aleborba / php-sdk

MercadoLibre's PHP SDK

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

MeliPHP official MercadoLibre PHP SDK (v.0.0.4)

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)

Usage

You need sign up your application http://applications.mercadolibre.com/

	// Try to put this code at the top
	require '/path/to/your/src/meli.php';

	// Create our Application instance (replace this with your appId and secret).
	$meli = new Meli(array(
		'appId'  		=> '12345',
		'secret' 		=> 'dsadsaDWFfs24DF34dgg43T3',
	));

Examples

  • Login with MercadoLibre

      $userId = $meli->initConnect();
      
      if ($userId) {
        $user = $meli->getWithAccessToken('/users/me');
      }
    

    code

  • Search items

      $query = $_REQUEST['q'];
    
      $search = $meli->get('/sites/#{siteId}/search',array(
      	'q' => $query,
      ));
    

    code

=======

  • View item

      $itemId = $_REQUEST['item_id'];
    
      $item = $meli -> get('/items/' . $itemId);
    

    code

=======

  • Questions

      $user = $meli -> getWithAccessToken('/users/me');
      
      $unansweredQuestions = $meli -> getWithAccessToken('/questions/search', array('seller' => $user['id'], 'status' => 'UNANSWERED'));
    

    code

=======

  • Get the Access Token

      $userId = $meli->initConnect();
      
      if ($userId) {
        $accessToken = $meli->getAccessToken();
      }
    

About

MercadoLibre's PHP SDK


Languages

Language:PHP 91.5%Language:JavaScript 8.5%