We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
So i am getting this error in my server console
{"level":"warn","ts":"2024-11-21T10:52:58.057Z","caller":"social/social.go:974","msg":"error response code from social request","provider":"google play services","code":403,"body":"{\n "error": {\n "code": 403,\n "message": "Request had insufficient authentication scopes.",\n "errors": [\n {\n "message": "Insufficient Permission",\n "domain": "global",\n "reason": "insufficientPermissions"\n }\n ],\n "status": "PERMISSION_DENIED",\n "details": [\n {\n "@type": "type.googleapis.com/google.rpc.ErrorInfo",\n "reason": "ACCESS_TOKEN_SCOPE_INSUFFICIENT",\n "domain": "googleapis.com",\n "metadata": {\n "method": "google.play.games.games.v1.Players.GetPlayer",\n "service": "games.googleapis.com"\n }\n }\n ]\n }\n}\n"}
This is throwing error Session = await Client.AuthenticateGoogleAsync(token, userName, isCreateNew=false);
This is working fine Session = await Client.AuthenticateGoogleAsync(token, userName, isCreateNew=true,loginData);
Can't sign in to old google account when i set the is create new to false
always has to use sign in to old google account when i set the is create new to true
The text was updated successfully, but these errors were encountered:
NK-606 Google Sign in is now working as expected in nakama
Sorry, something went wrong.
No branches or pull requests
So i am getting this error in my server console
{"level":"warn","ts":"2024-11-21T10:52:58.057Z","caller":"social/social.go:974","msg":"error response code from social request","provider":"google play services","code":403,"body":"{\n "error": {\n "code": 403,\n "message": "Request had insufficient authentication scopes.",\n "errors": [\n {\n "message": "Insufficient Permission",\n "domain": "global",\n "reason": "insufficientPermissions"\n }\n ],\n "status": "PERMISSION_DENIED",\n "details": [\n {\n "@type": "type.googleapis.com/google.rpc.ErrorInfo",\n "reason": "ACCESS_TOKEN_SCOPE_INSUFFICIENT",\n "domain": "googleapis.com",\n "metadata": {\n "method": "google.play.games.games.v1.Players.GetPlayer",\n "service": "games.googleapis.com"\n }\n }\n ]\n }\n}\n"}
This is throwing error
Session = await Client.AuthenticateGoogleAsync(token, userName, isCreateNew=false);
This is working fine
Session = await Client.AuthenticateGoogleAsync(token, userName, isCreateNew=true,loginData);
Expected Result
Can't sign in to old google account when i set the is create new to false
Actual Result
always has to use sign in to old google account when i set the is create new to true
The text was updated successfully, but these errors were encountered: