user1898475
user1898475

Reputation: 1

Can google app scripts post an image (or file) to Google Cloud (not Drive) using an URL?

I want to use Google Cloud as a backup for my images which are currently in Rackspace cloud. Each image has a URL. I figured out how to write a google app script to do this successfully to Google Drive, but I want to do it with Google Cloud.

Upvotes: 0

Views: 105

Answers (1)

Spencer Easton
Spencer Easton

Reputation: 5782

Depending on the size of the job Apps Script may have a quota bottleneck.

https://developers.google.com/apps-script/guides/services/quotas

Google Cloud Functions (similar to AWS lambda) may be a better tool.

https://cloud.google.com/functions/

If you do think GAS would work check out a very well designed Apps Script library for Google Cloud Storage

http://ramblings.mcpher.com/Home/excelquirks/googlecloud/gcsstore

Upvotes: 1

Related Questions