https://github.com/hanson/open-taobao-sdk
淘宝开放平台SDK
https://github.com/hanson/open-taobao-sdk
Last synced: about 1 year ago
JSON representation
淘宝开放平台SDK
- Host: GitHub
- URL: https://github.com/hanson/open-taobao-sdk
- Owner: Hanson
- License: mit
- Created: 2018-06-19T13:45:26.000Z (almost 8 years ago)
- Default Branch: master
- Last Pushed: 2018-06-19T15:40:32.000Z (almost 8 years ago)
- Last Synced: 2025-04-14T04:14:39.708Z (about 1 year ago)
- Language: PHP
- Size: 3.91 KB
- Stars: 19
- Watchers: 1
- Forks: 3
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# open-taobao-sdk
淘宝开放平台SDK
## 安装
```
composer require hanson/open-taobao-sdk:dev-master -vvv
```
### 使用
```php
'your-key', 'secret' => 'your-secret']);
// 使用如下
$taobao->request('method', $params);
// 例子
print_r($taobao->request('taobao.tbk.item.get', ['fields' => 'num_iid,title,pict_url,small_images,reserve_price,zk_final_price,user_type,provcity,item_url,seller_id,volume,nick', 'q' => '便利贴']));
```