1. Go to this page and download the library: Download tamble/bluedrone-client-php 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/ */
tamble / bluedrone-client-php example snippets
namespace Tamble\Bluedrone\Api;
use Tamble\Bluedrone\Api\Token\Storage\Pdo\Mysql;
nce
*/
$storage = new Mysql('bluedrone_tokens', '127.0.0.1', 'user', 'password', 'database');
$client = new Client('CLIENT_ID', 'CLIENT_SECRET', $storage);
try {
$client->createOrUpdateProduct(
'2345-09-F-RED',
array(
"sales_channel_id" => 23,
"name" => "Gheisa Hair Pin Red",
"unit_system" => "imperial",
"weight" => 10,
"length" => 4,
"width" => 1,
"height" => 1,
"price" => 3.5,
"currency_code" => "USD",
"is_unfulfillable" => false,
"is_fragile" => true,
"is_dangerous" => false,
"is_perishable" => false
)
);
} catch (BluedroneException $e) {
/*
* Any problem that occurs results in an exception being thrown.
* Each exception offers a 'title', 'details' and 'code' (http status code)
*
* The lack of an exception means that the api call was successful.
*/
echo $e->getTitle();
echo $e->getDetail();
}
javascript
{
"bluedrone-client-php": "*"
}
}
shell
php composer.phar install
Loading please wait ...
Before you can download the PHP files, the dependencies should be resolved. This can take some minutes. Please be patient.