Hi, I didn't have any problems in sharing all the code, but it's in Go; contact me if you need it. I meant that the OAuth flow is:
You prepare the authorization & redirect the user to Google ---> The user allows your app ---> Google gives you a temporary token ---> You interchange that token with a permanent one (with an expire date) ---> Store it Each time you do a request, the code must: Retrieve the token ---> If it's expired, ask for a new one -> Store it again if it has changed ---> Do the request Hard-coding the password in your code requires an update & deploy each time the user changes the password (apart from being less secure). Ernesto -- You received this message because you are subscribed to the Google Groups "Google App Engine" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/google-appengine?hl=en.
