haistar/jos-api-client

Unofficial API Client for JDID Open Platform V2

v1.0.0 2022-05-03 12:51 UTC

This package is auto-updated.

Last update: 2024-04-30 00:34:08 UTC


README

Composer library for JD.ID open API version 2. Please found something related with the Open API in this link

How to install

composer install haistar/jos-api-client

How to use

// Setup Client
$client = new JosApiClient($_ENV["SERVER_URL"], $_ENV["ACCESS_TOKEN"]);
$client->appKey = $_ENV["APP_KEY"];
$client->appSecret = $_ENV["APP_SECRET"];

// Setup Request
$request = new JosApiRequest("jingdong.epistock.queryEpiMerchantWareStock");
$request->addRequestParam("wareStockQueryListSt", "[{'skuId':601267085,'realNum':1}]");

// Execute API Request
$response = $client->execute($request);