This is a Shopee Partner API Client for PHP.
- PHP >= 7.1
- Guzzle
Execute the following command to get the package:
$ composer require minchao/shopee-php
Construct a new client, then use to access the Shopee Partner API.
<?php
require_once __DIR__ . '/vendor/autoload.php';
$client = new \Shopee\Client([
'secret' => SHOPEE_SECRET,
'partner_id' => SHOPEE_PARTNER_ID,
'shopid' => SHOPEE_SHOP_ID,
]);
$response = $client->item->getItemDetail(['item_id' => 1978]);
Alternatively, you can also use the parameter model within request.
$parameters = (new \Shopee\Nodes\Item\Parameters\GetItemDetail())
->setItemId(1978);
$response = $client->item->getItemDetail($parameters);
See the LICENSE file for license rights and limitations (BSD 3-Clause).