Alexey
Alexey

Reputation: 91

Using Google Sheets API without a cloud platform project

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

Answers (1)

Gustavo
Gustavo

Reputation: 714

  • To consume Sheets API, you must identify the caller using Oauth 2.0 and in the end a Google Cloud Platform project is needed. More information here
  • Quoting: 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.
  • To register and generate credentials (OAuth / API key) a Google Cloud Platform project is needed

Upvotes: 3

Related Questions