Is there a way to get the token that was used to log in the user with Google Play Game Services?
I'm looking for something like:
@Override
public void onSignInSucceeded() {
String email = getGamesClient().getCurrentAccountName();
String token = getGamesClient().getToken();
}
I need this to authenticate the user when they are contacting my own server.