I use the API to get a list of products with parameters:
'Keywords' => 'search, 'Operation' => 'ItemSearch', 'SearchIndex' => 'All', 'AssociateTag' => 'my-tag', 'AWSAccessKeyId' => 'my-key-id', 'ResponseGroup' => 'Medium', 'Service' => 'AWSECommerceService', 'Timestamp' => gmdate('Ymd\TH:i:s\Z'), 'Version' => '2010-09-01',
I only receive images from an insecure server, for example
http://ecx.images-amazon.com/images/I/417YQ3xWx7L._SL75_.jpg
I found out that this image is also available at the URL:
https://images-na.ssl-images-amazon.com/images/I/417YQ3xWx7L._SL75_.jpg
Can I force the API to return a secure URL in response?
php amazon amazon-web-services
kuba
source share