-
Notifications
You must be signed in to change notification settings - Fork 629
Description
I've been using the google provider for a few months but recently I keep getting a 401 error from the Fetch user call. The userinfo endpoint returns this error (I replicated the call in curl):
curl -H "Authorization: Bearer [ACCESS_TOKEN]" https://www.googleapis.com/oauth2/v2/userinfo\?access_token\=[ACCESS_TOKEN] { "error": { "code": 401, "message": "Request is missing required authentication credential. Expected OAuth 2 access token, login cookie or other valid authentication credential. See https://developers.google.com/identity/sign-in/web/devconsole-project.", "status": "UNAUTHENTICATED" } }
Looking at the https://developers.google.com/identity/sign-in/web/devconsole-project it appears that the Google Sign-in flow that goth is using is being sunset. Will there be an update to the library to use Google Identity Services endpoints? Can anyone verify that their current google provider implementation is still working? Thanks for any help.