This repository contains the open source MeliPHP Unofficial PHP SDK that allows you to access MercadoLibre Platform from your PHP app. MeliPHP is licensed under the Apache Licence, Version 2.0 (http://www.apache.org/licenses/LICENSE-2.0.html)
You need sign up your application http://applications.mercadolibre.com/
// Try to put this code at the top
require '../src/meli.php';
// Create our Application instance (replace this with your appId and secret).
$meli = new Meli(array(
'appId' => 12345,
'secret' => dsadsaDWFfs24DF34dgg43T3,
));
-
Login with MercadoLibre
$userId = $meli->initConnect(); if ($userId) { $user = $meli->getWithAccessToken('/users/me'); }
-
Search items
$query = $_REQUEST['q']; $search = $meli->get('/sites/#{siteId}/search',array( 'q' => $query, ));
=======
=======