Reputation: 91
I need to save some data to private Google Sheets as part of my pet project. I have reviewed the documentation and I am a bit confused about having to create a cloud platform project for such small task. Is there any way to use Google Sheets API(or write data to Google Sheets without it somehow) and don't use google cloud platform?
Upvotes: 5
Views: 2249
Reputation: 714
When your application requests public data, the request doesn't need to be authorized, but does need to be accompanied by an identifier, such as an API key.
, so even if you are fetching data from a publicly available Sheets you still need to identify the caller.Upvotes: 3