Can I upload files to google cloud storage from url?

google-cloud-storage

Solution

You can stream the output of curl to the gsutil cp command as follows:

curl http://www.example.com/file.txt | gsutil cp - gs://bucket/file.txt

Problem

Code Exemple: ``` gsutil cp "http://www.exemple.com/file.txt" "gs://bucket/" ```

Original source