如何在Amazon API中按颜色对产品详细信息进行排序/过滤?

时间:2013-02-15 13:57:20

标签: php amazon-web-services amazon-s3 amazon

我正在使用Amazon API集成。我也发送请求并获得响应。但我需要按颜色排序/过滤。我正在使用此代码获取响应值。

$request = aws_signed_request('com', array(
'Operation' => 'ItemSearch',
'Keywords' => $keywords,
"SearchIndex" => $search_index,
"MaximumPrice" => $highprice,
"MinimumPrice" => $lowprice,
"Color" => $color,
"Count" => '24',"Brand" => $brand,
"MerchantId" => $MerchantId,
'ResponseGroup' => 'Large,EditorialReview'), $public_key, $private_key, $associate_tag);

在那个编码中,我需要在亚马逊产品中按颜色过滤。怎么可能?请指教我..

1 个答案:

答案 0 :(得分:1)

根据AWS docs,目前不支持按颜色排序

编辑:filtering by color

都不是