luban/top

淘宝开放平台SDK

v0.0.9 2021-03-25 05:54 UTC

This package is not auto-updated.

Last update: 2024-05-30 20:38:22 UTC


README

鲁班·淘宝开放平台SDK

使用示例

require __DIR__ . '/vendor/autoload.php';

use LuBan\Top\Client;
use LuBan\Top\Requests\TbkItemInfoGetRequest;

$c = new Client();
$c->appKey = "You're appkey";
$c->secretKey = "You're appSecret";
$req = new TbkItemInfoGetRequest();
$req->setNumIids('627565398166');
$result = $c->execute($req);
var_dump($result);

贡献代码

如果你想要参与代码开发请fork本项目,然后发起pull request。在通过代码检查和tests之后会将请求合并到主分支

参考文档