I am using Google Cloud Storage to store images for my Google App Engine application and I\'m trying to access the images like so:
And finally after 2 days, got it working.here is the answer: My approach for this is wrong, no need for signed URL. i need to just add my bucket as public-read so that i can read it from browser request. thats all. open gsutil, type this:
gsutil -m acl -r set public-read gs://BUCKET_NAME
and set this as default for all future uploads
gsutil -m defacl set public-read gs://BUCKET_NAME
hope it helps someone !
Thanks to @kctang !