How to download from google cloud storage?
Assuming you want to use the browser to download files, you should navigate to cloud.google.com/console, select the appropriate project and then "Cloud Storage" on the left. That will display a list of buckets to click on, from where the individual objects are available for download.
It's also worth noting, though, that the Cloud Console is really just a convenience; Google Cloud Storage, like other enterprise cloud solutions, is designed around API usage. Google Cloud Storage also offers the gsutil tool that makes the full functionality of these APIs available through a convenient command line interface.
http://storage.googleapis.com/<bucket>/<object>
For example, if you uploaded foo.zip
into bucket myBucket
, you can download it with
http://storage.googleapis.com/myBucket/foo.zip
It seems you are having trouble downloading the files from Google Cloud Storage.
You should be able to right click on the filename when you are in Cloud Storage and click 'Save Link As' and that should allow you to download your file. That's about it.
This is what that the file front end looks like just in case you are somewhere else or referring to a different product:
If you have it in a bucket, you can use gsutil. Just install gsutil on your local machine (for example by installing the Google Cloud SDK) and then run something like
gsutil cp gs://my-bucket/my-file .
See this thread or lot's answer.