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?