猿问

如何使用淘宝商品API 的 taobao.product.get?

我使用过淘宝客API的taobao.tbk.item.get, 成功拿到商品资料。但当我调用商品API 的 taobao.product.get, 我拿不到资料,也没有出现什么错误。

这是淘宝客API:

<?php

header('Content-Type: text/html; charset=utf-8');
require_once('TopSdk.php');

$c = new TopClient;
$c->appkey = 'appkey ';
$c->secretKey = 'secretKey ';
$req = new TbkItemInfoGetRequest;
$req->setFields("num_iid,title,pict_url,small_images,reserve_price,zk_final_price,user_type,provcity,item_url");
$req->setPlatform("1");
$req->setNumIids("556420459115");
$resp = $c->execute($req);

echo 'title:';
echo $resp->results->n_tbk_item->title.'</br>';

?>

这是商品API 的 taobao.product.get:

<?php

header('Content-Type: text/html; charset=utf-8');
require_once('TopSdk.php');


$c = new TopClient;
$c->appkey = 'appkey ';
$c->secretKey = 'secretKey ';
$req = new ProductGetRequest;
$req->setCustomerProps("20000:优衣库:型号:001:632501:1234");
$req->setFields("product_id,outer_id");
$req->setProductId("556420459115");
$req->setCid("50012286");
$req->setProps("10005:10027;10006:29729");
$req->setMarketId("2");
$resp = $c->execute($req);

?>
慕尼黑5688855
浏览 1137回答 1
1回答
随时随地看视频慕课网APP
我要回答