We build our web application and integrate with Google OAuth2 according to this doc Google Identity Services JavaScript SDK
We would like to use "popup" mode, but when trying to exchange access_token with authentication code, /token
return error like "
{"error": "redirect_uri_mismatch","error_description": "Bad Request"}"
We have passed the redirect_url
param when calling /token
, and it is exactly the same one as configured on the credential page.
What's more weird is that when we switch to "redirect" mode, everything works fine. Same client_id
, same client_secret
, same grant_type
, same redirect_uri
.
I don't get it, it's like codes generated under redirect
and popup
mode are treated differently.
Any help? Thanks a lot!