PHP code example of eunarede / bling-php-sdk

1. Go to this page and download the library: Download eunarede/bling-php-sdk 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/ */

    

eunarede / bling-php-sdk example snippets


use Bling\Core\Config;
use Bling\BlingClient;

$apitoken = '1234';

$client = new BlingClient(Config::configure($apitoken));


try {
  $listarContatos = $client->getAllContatos();
  print_r($listarContatos);
} catch (\Exception $e) {
  echo $e->getMessage() . PHP_EOL;
}