Authsubtoken Exception In Android
I am using the following code to get Authsubtoken from my android application; following is the code: GoogleAuthUtil.getToken(myCtx, 'mymail@gmail.com','oauth2:https://www.google
Solution 1:
Using this exception
...
} catch (UserRecoverableAuthIOException e) {
startActivityForResult(e.getIntent(), REQUEST_AUTHORIZATION);
}
...
check out more here
https://stackoverflow.com/a/14386248/760489
Post a Comment for "Authsubtoken Exception In Android"