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

发布于 2022-09-06 01:27:19 字数 1182 浏览 23 评论 0

我使用过淘宝客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);

?>

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

夜深人未静 2022-09-13 01:27:19

你查询的这个556420459115 这个产品是不存在的所以返回的是空

该接口是天猫商家发布商品时,查询关联产品信息时使用,非商品查询接口。
商品查询接口:taobao.item.seller.get

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文