-1

我正在使用 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);

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

4

1 回答 1

1

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

编辑:也不是按颜色过滤

于 2013-02-25T20:09:48.660 回答