PlayGamesPlatform.Activate();
PlayGamesPlatform.Instance.Authenticate(ProcessAuthentication);
}
internal void ProcessAuthentication(SignInStatus status)
{
if (status == SignInStatus.Success)
{
PlayGamesPlatform.Instance.RequestServerSideAccess(true, code =>
{
authCode = code;
I get the server access token and this used to work 6 months ago but now when I put the token into
https://oauth2.googleapis.com/tokeninfo?id_token=
It keeps saying Invalid Token
The php file i send the token to also comes up with an error.
Is there something I am doing wrong to get the wrong code?