PHP code example of pgrimaud / priceminister-sdk
1. Go to this page and download the library: Download pgrimaud/priceminister-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/ */
pgrimaud / priceminister-sdk example snippets
$client = new Priceminister\PriceministerClient('yourLogin', 'yourToken');
$productListing = new Priceminister\ProductListing($client);
$productListing->setParameter('kw', 'iron man tome 1 croire');
$productListing->validParameters();
$plRequest = new ProductListingRequest($productListing);
print_r($plRequest->fetch());
/*
Array
(
[0] => Array
(
[id] => 283617873
[values] => Array
(
[name] => Iron Man Tome 1 - Croire
[image] => http://pmcdn.priceminister.com/photo/984727643_ML.jpg
[breadcrumb] => Livres > BD et livres d'humour > Comics
[caption] =>
[topic] => Livre
[offers] => 13
[bestprice] => 7
)
)
)
*/
$productListing2 = new ProductListing($client);
$productListing2->setParameter('productids', '283617873');
$productListing2->validParameters();
$plRequest = new ProductListingRequest($productListing2);
$result = $plRequest->fetch();
//Get price with shipping cost
echo $result->getBestPrice();
//11.5
//Get price without shipping cost
echo $result->getBestPrice(false);
//7.5