PHP code example of ospina / curlcobain
1. Go to this page and download the library: Download ospina/curlcobain library. Choose the download type require. 2. Extract the ZIP file and open the index.php. 3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
ospina / curlcobain example snippets
$requestBody = array(
'site_id' => 'MCO',
);
$requestBody = json_encode($requestBody);
$request = new CurlCobain('https://api.mercadopago.com/users/test_user');
$request->setHeaders('Authorization','Bearer APP_USR-****');
var_dump($request->post($requestBody,'json'));