我正在使用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);
在那个编码中,我需要在亚马逊产品中按颜色过滤。怎么可能?请指教我..