I don't want to use google play games for my app, since it is only supported on Android, while i'm doing a cross-platform thing, and it feels a bit overkill feature-wise, since I only want to log in with that.
Log-in to google natively works fine, I can get both an accessToken as well as an authCode.
And luckily there is /Client/LoginWithGoogleAccount, which takes a serverAuthCode as parameter.
But when i call that, I get this response
[InvalidGoogleToken] Google API error code: invalid_grant details: Bad Request
{
"ApiEndpoint": "/Client/LoginWithGoogleAccount",
"HttpCode": 400,
"HttpStatus": "BadRequest",
"Error": 1026,
"ErrorMessage": "Google API error code: invalid_grant details: Bad Request",
"ErrorDetails": null,
"CustomData": null,
"RetryAfterSeconds": null
}
Is there any way I can find out more about "Bad Request"? Is that even something that I can influence, since it happens between Playfab and Google?