php – 用于返回安全图像URL的Amazon ECS API

前端之家收集整理的这篇文章主要介绍了php – 用于返回安全图像URL的Amazon ECS API前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我正在使用API​​获取带参数的产品列表:
'Keywords' => 'search,'Operation' => 'ItemSearch','SearchIndex' => 'All','AssociateTag' => 'my-tag','AWSAccessKeyId' => 'my-key-id','ResponseGroup' => 'Medium','Service' => 'AWSECommerceService','Timestamp' => gmdate('Y-m-d\TH:i:s\Z'),'Version' => '2010-09-01',

我只从不安全的服务器接收图像,例如

http://ecx.images-amazon.com/images/I/417YQ3xWx7L._SL75_.jpg

我了解到这个图像也可以在URL下找到:

https://images-na.ssl-images-amazon.com/images/I/417YQ3xWx7L._SL75_.jpg

我可以使API返回响应中的安全URL吗?

我觉得这是个老问题.实际上可能还是如此.

您可以使用简单的str_replace替换结果URL.

$image-url = "http://ecx.images-amazon.com/images/I/417YQ3xWx7L._SL75_.jpg"

$new-image-url = str_replace('http://ecx.','https://images-na.ssl-',$image-url);
原文链接:https://www.f2er.com/php/137235.html

猜你在找的PHP相关文章