如何从亚马逊的产品广告 API 获取图像和描述?

发布于 2024-11-13 23:53:03 字数 464 浏览 5 评论 0原文

我正在使用 亚马逊商品广告 API(以前称为 ECS) 在 PHP 中使用 ASIN 代码获取产品信息。我可以获得信息,但缺少图像和产品说明。我查看了 API 类,但没有找到任何有用的东西。我用来获取产品详细信息的代码是:

$client = new AmazonECS(get_option('awskey'), get_option('awssecret'), 'UK'); 
$response = $client->lookup('0596157134'); 
var_dump($response); // Debugging

是否可以使用 API,或者是否有其他方法来获取产品描述和图像?

I am using the Amazon Product Advertising API (formerly ECS) in PHP to get product information using an ASIN code. I can get the information but images and product descriptions are missing. I've looked around the API class and couldn't find anything helpful. The code I am using to get the product details is:

$client = new AmazonECS(get_option('awskey'), get_option('awssecret'), 'UK'); 
$response = $client->lookup('0596157134'); 
var_dump($response); // Debugging

Is it possible with the API, or is there another way to get the product description and image?

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

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

发布评论

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

评论(1

日暮斜阳 2024-11-20 23:53:03

您进行的商品查找调用仅返回有关商品的基本信息。您需要使用 ResponseGroup 参数指定您希望 Amazon 返回哪些信息(请参阅 亚马逊的 ItemLookup 文档 了解更多信息)。如果您想获取图片和产品描述,可以请求“中”响应组。尝试以下调用:

$response = $client->responseGroup('Medium')->lookup('0596157134'); 

The item lookup call you are making only returns basic information about the product. You will need to use the ResponseGroup parameter to specify what information you want Amazon to return (see Amazon's ItemLookup Documentation for more information). If you want to get the images and product description, you can request the "Medium" response group. Try the following call:

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