This library provides developers with a simple set of bindings to the Mercado Pago API.
The SDK supports PHP 5.6 or major
- Download Composer if not already installed
- Go to your project directory and run
composer require "mercadopago/dx-php:1.2.1"
on the command line. - This how your directory structure would look like.
- Thats all, you have Mercado Pago SDK installed.
- You have to require the library from your Composer vendor folder.
require __DIR__ . '/vendor/autoload.php';
- Setup your credentials
You have two types of credentials:
- For API or custom checkout:
MercadoPago\SDK::setAccessToken("YOUR_ACCESS_TOKEN"); // On Production MercadoPago\SDK::setAccessToken("YOUR_TEST_ACCESS_TOKEN"); // On Sandbox
- For Web-checkout:
MercadoPago\SDK::setClientId("YOUR_CLIENT_ID"); MercadoPago\SDK::setClientSecret("YOUR_CLIENT_SECRET");
- Using resource objects.
You can interact with all the resources available in the public API, to this each resource is represented by classes according to the following diagram:
Sample
<?php
require __DIR__ . '/vendor/autoload.php';
MercadoPago\SDK::setAccessToken("YOUR_ACCESS_TOKEN");
$payment = new MercadoPago\Payment();
$payment->transaction_amount = 141;
$payment->token = "YOUR_CARD_TOKEN";
$payment->description = "Ergonomic Silk Shirt";
$payment->installments = 1;
$payment->payment_method_id = "visa";
$payment->payer = array(
"email" => "larue.nienow@hotmail.com"
);
echo $payment->status;
?>
Write us at developers.mercadopago.com