HTTPS image URL Parse Backend -


i using parse rest api retrieve images parse backend. when image file url gives me http:// format. however, wondering if possible image parse in https format. parse backend provide this?

regards.

after searching parse blog , other web sites come solution find important share. problem parse file url in http format web site can generate insecure content due https.

so solution using trick presented parse official mobile application anypic. should replace "http://" "https://s3.amazonaws.com/". example if have file url this;

http://files.parsetfss.com/b05e3211-bf8b-.../tfss-fa825f28-e541-...-jpg 

then after replacing can use url;

https://s3.amazonaws.com/files.parsetfss.com/b05e3211-bf8b-.../tfss-fa825f28-e541-...-jpg 

hope helps other people. regards


Comments

Popular posts from this blog

javascript - AngularJS custom datepicker directive -

javascript - jQuery date picker - Disable dates after the selection from the first date picker -