PHP code example of gwinn / yandex-market
1. Go to this page and download the library: Download gwinn/yandex-market 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/ */
gwinn / yandex-market example snippets
// Указываем авторизационные данные
$clientId = '9876543210fedcbaabcdef0123456789';
$token = '01234567-89ab-cdef-fedc-ba9876543210';
// Создаем экземпляр клиента с методами управления скрытыми товарами
$hiddenOffersClient = new \Yandex\Beru\Partner\Clients\HiddenOffersClient($clientId, $token);
// Получаем объект со скрытыми товарами
$hiddenOffersObject = $hiddenOffersClient->getInfo($campaignId);
$result = $hiddenOffersObject->getResult();
// Получаем итератор по скрытым товарам
$hiddenOffers = $result->getHiddenOffers();
// Печатаем информацию о скрытиях
foreach ($hiddenOffers as $hiddenOffer) {
echo "Comment: " . $hiddenOffer->getComment();
echo "MarketSku: " . $hiddenOffer->getMarkerSku();
echo "TtlInHours: " . $hiddenOffer->getTtlInHours();
}
json
{
"ex-market/beru-php-partner": "*"
}
}