You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Has anyone gotten an error where they were unable to use the refresh token to retrieve a new access token? I'm getting this error
Error: Couldn't get access token: {
"error": "unauthorized_client",
"error_description": "Unauthorized"
}
even though I got the refresh token as instructed in the environment setup.
The text was updated successfully, but these errors were encountered:
Invalid client usually means that the client ID and client secret don't match, or there is a typo in one of them.
When you retrieve the refresh token, could you try putting the access token that comes along with it into the tokeinfo endpoint and making sure the values for client ID there match the ones you've configured with: https://www.googleapis.com/oauth2/v1/tokeninfo?access_token=
It might be worth dumping out the request to make sure there isn't a mistake in that (e.g. too short a content-length header or similar).
Has anyone gotten an error where they were unable to use the refresh token to retrieve a new access token? I'm getting this error
Error: Couldn't get access token: {
"error": "unauthorized_client",
"error_description": "Unauthorized"
}
even though I got the refresh token as instructed in the environment setup.
The text was updated successfully, but these errors were encountered: