Skip to content

Latest commit

 

History

History
42 lines (29 loc) · 661 Bytes

README.md

File metadata and controls

42 lines (29 loc) · 661 Bytes

阿里淘宝客SDK

可能是最优雅、简易的淘宝客SDK

安装

composer require ennnnny/tbk

使用

<?php

use ETaobao\Factory;

$config = [
    'appkey' => '',
    'secretKey' => '',
    'format' => 'json',
    'sandbox' => false,
];

$app = Factory::Tbk($config);
$param = [
   'fields' => 'num_iid,title,pict_url,small_images,reserve_price,zk_final_price,user_type,provcity,item_url,seller_id,volume,nick',
   'q' => '蚊香'
];
$res = $app->item->get($param);

print_r($res);

支持

License

MIT