nathantudc/jdsdk

该包的最新版本(1.0.4)没有可用的许可证信息。

京东联盟SDK

1.0.4 2022-09-13 14:38 UTC

This package is auto-updated.

Last update: 2024-09-14 20:35:44 UTC


README

使用方法
use Nathantudc\JD\JdClient; //客户端,也就是请求的基本信息 如 key、secret等
use Nathantudc\JD\Request\xxxxx;  //其中xxxxx 为需要请求的类,如:UnionOpenCategoryGoodsGetRequest(分类)
简单示例
//请求的一些基本参数
$client = new JdClient();
$client->appKey = "xxxxxxxxxxxxxxxxxxxxxx";
$client->appSecret = "xxxxxxxxxxxxxxxxxxxxxx";

//请求的一些参数
$req = new UnionOpenCategoryGoodsGetRequest();
$req->putOtherTextParam("parentId", 0);
$req->putOtherTextParam("grade",0);
$req->setReq($req);
$response = $client->execute($req);
print_r($response);