Hi There,
You can use Open ID with oAuth to get an authenticated token to make
requests to our API:
http://code.google.com/apis/accounts/docs/OpenID.html#oauth
You are right, this process requires token management on behalf of the
app provider. The process would be:
- user first logs into your application
- you then redirect the user to Google to get an authentication token
- you store this token in a database and associate it with a user
- you make API requests with this token.
--- user leaves and comes back later ----
- user logs back into your application
- you query the database to retrieve the previous tokens
- you make API requests.
Does this help?
-Nick