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:
For a more general answer, the way to access an gs:// url is to use this format:
https://console.cloud.google.com/storage/browser/[BUCKET_NAME]/
For example, if the bucket you're trying to access is the Landsat public dataset,gs://gcp-public-data-landsat/ then you'd access the bucket with this url: https://console.cloud.google.com/storage/gcp-public-data-landsat/
Here's the documentation related to accessing a bucket:
Hope this helps!