Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Using AccountManager class I obtain an oauth token for google account. I fetch this url:

https://www.googleapis.com/oauth2/v1/tokeninfo?access_token=...

It says:

{
 "issued_to": "...",
 "audience": "...",
 "user_id": "...",
 "scope": "https://www.googleapis.com/auth/userinfo.profile",
 "expires_in": 1288,
 "access_type": "online"
}

I should check that audience field match my app's client_id, shouldn't I? How can I check this?

I've tried to use Google Api console to register a new oauth android app, but I can't understand how to join google api account with android app.

PS: How can I remove granted authorizations for a single app?

share|improve this question
You can remove granted auths from this url: accounts.google.com/b/0/IssuedAuthSubTokens?hl=it – user1365836 Jul 30 '12 at 13:38

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.