第一步:從淘寶開放平臺下載相應的SDK文件 并解壓
第二步:將解壓好的SDK文件夾復制到PhalApi項目的Vendor目錄下
第三步:PhalApi的統(tǒng)一初始化文件中加載淘寶SDK的入口文件
// 引入淘寶客SDK的TopSdk.php
require_once API_ROOT . '/vendor/aliyuncs/taobao_sdk_php/TopSdk.php';
第四步:在領(lǐng)域?qū)觟mport相應的class即可使用
<?php
namespace App\Domain\Test;
use TbkItemGetRequest;
use TopClient;
class Test {
public function test($params){
$c = new TopClient;
$c->appkey = "";
$c->secretKey = "";
$req = new TbkItemGetRequest;
$req->setFields("");
$req->setQ("");
$resp = $c->execute($req);
return $resp;
}
}