Warning: file_get_contents(/data/phpspider/zhask/data//catemap/1/php/278.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
Php 如何在AmazonAPI中获得按颜色排序/过滤的产品详细信息?_Php_Amazon Web Services_Amazon S3_Amazon - Fatal编程技术网

Php 如何在AmazonAPI中获得按颜色排序/过滤的产品详细信息?

Php 如何在AmazonAPI中获得按颜色排序/过滤的产品详细信息?,php,amazon-web-services,amazon-s3,amazon,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" =&g

我正在进行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);
在这种编码中,我需要根据亚马逊产品的颜色进行过滤。这怎么可能呢?请告诉我..

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

编辑:两者都不是