我有一个从亚马逊 s3 存储桶“动态”获取的图像,这里是源示例:src = http://s3.amazonaws.com/kidslink_assets/logos/5082f5d279216d14d000001e/original.png?1350759890
我需要这是一个 http*s* (https) 请求。
我有一个从亚马逊 s3 存储桶“动态”获取的图像,这里是源示例:src = http://s3.amazonaws.com/kidslink_assets/logos/5082f5d279216d14d000001e/original.png?1350759890
我需要这是一个 http*s* (https) 请求。
如果我理解 S3 术语,则 S3 响应始终用作 https 。我尝试使用 http 访问您的图像,默认重定向到 https (https://s3.amazonaws.com/kidslink_assets/logos/5082f5d279216d14d000001e/original.png?1350759890)
所以你不必担心 https/ssl。
As client needs to see it as https request, i added manually when the page is rendering the image. I means added "s" manually for the link before rendering the page as http and https are doing the same.