Using The Google Sheets Api
I want to be able to edit a google spreadsheet from a Android app. I read that I need to do the OAuth 2.0 and only after that I can access the API. in the Authorizing with Google f
Solution 1:
OAuth2 and Google-spreadsheet-API
These are independent -- You get the OAuth2 access & re-fresh tokens and then use the access token with the google-spreadsheet-api.
Understanding OAuth Tokens
For a basic understanding of the tokens see this blog and the references to "Google OAuth2.0 Playground." http://masashi-k.blogspot.jp/2013/06/sending-mail-with-gmail-using-xoauth2.html
OAuth2 & Java
I have not tried this, but looks like the best tutorial I have seen. http://soatutorials.blogspot.co.at/2013/08/google-spreadsheet-api-connecting-with.html From: OAuth2 authorization from Java/Scala using google gdata client API
OR the google DrEdit tutorial includes OAuth2
Post a Comment for "Using The Google Sheets Api"