PHP code example of tb07 / open-taobao

1. Go to this page and download the library: Download tb07/open-taobao library. Choose the download type require.

2. Extract the ZIP file and open the index.php.

3. Add this code to the index.php.
    
        
<?php
require_once('vendor/autoload.php');

/* Start to develop here. Best regards https://php-download.com/ */

    

tb07 / open-taobao example snippets




$app = new Qbhy\OpenTaobao\OpenTaobao([  
            'debug' => true,
            'app_key' => 'your app key',
            'app_secret' => 'your app secret'
]);

// 获取推荐商品
$app->tbk->itemRecommends('595866143271', 'title');

// 部分API没有封装成具体方法,你也可以自行调用 request 方法
$app->request('方法', ['参数'=> '值']);