导读:PHP SDK调用示例代码先决条件下载TOP官方PHP SDK,请参考SDK使用说明文档。示例代码<?phpheader("Content-type: t
PHP SDK调用示例代码
先决条件
下载TOP官方PHP SDK,请参考SDK使用说明文档。
示例代码
<?php
header("Content-type: text/html; charset=utf-8");
include "TopSdk.php";
//将下载到的SDK里面的TopClient.php的$gatewayUrl的值改为沙箱地址:http://gw.api.tbsandbox.com/router/rest
//正式环境时需要将该地址设置为:http://gw.api.taobao.com/router/rest
$c = new TopClient;
$c->appkey = "test"; // 可替换为您的沙箱环境应用的AppKey
$c->secretKey = "test"; // 可替换为您的沙箱环境应用的AppSecret
$sessionkey= "test"; // 必须替换为沙箱账号授权得到的真实有效SessionKey
$req = new SellerItemGetRequest;
$req->setFields("num_iid,title,nick,price,approve_status,sku");
$req->setNumIid("123456789");
$rsp = $c->execute($req,$sessionkey);
echo "api result:";
print_r($rsp);
?>
该示例是在沙箱环境下调用,获取的是沙箱中的数据。若要获取线上环境的数据,请填写自己创建应用获取过来的AppKey与AppSecret,并更改调用接口的环境地址为线上地址,同时使用线上淘宝账号获取授权SessionKey。