从AppEngine ImagesService生成安全(https)URL

时间:2017-05-17 13:52:58

标签: java google-app-engine

Google的AppEngine ImagesService默认返回图片的非安全(http)网址。如果它有一个生成安全(https)URL的方法会很好。例如,getServingUrl可由getSecureServingUrl补充。

2 个答案:

答案 0 :(得分:1)

getServingUrl方法已经允许您指定" secure"在ServingUrlOptions中。

答案 1 :(得分:0)

A(不太适当)的解决方法是在网址中将http://替换为https://。这是有效的,但由于它没有记录,它可能会在任何时候停止工作。例如:

url.replaceAll("^http:", "https:")

会起作用。