playgameservices / play-games-plugin-for-unity

Google Play Games plugin for Unity
Other
3.46k stars 965 forks source link

Dont return idToken and authenticationCode when SignIn #2998

Open isuckatlinux opened 3 years ago

isuckatlinux commented 3 years ago

I follow every single one instruction to set up this plugin, and only return googleID. IDToken and authentication code are "". I need realy bad one of those to complete the register with Firebase, thanks for the help

pbelluzzo commented 3 years ago

Did you enabled requestIdToken and ServerAuthCode in config?

PlayGamesClientConfiguration config = new PlayGamesClientConfiguration.Builder() .RequestServerAuthCode(true) .RequestIdToken() .Build();