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
getAuthorizeUri
Google requires ?access_type=offline in the authorization url:
?access_type=offline
https://accounts.google.com/o/oauth2/auth?access_type=offline&prompt=consent
This library concats ?client_id= which leads to two ?.
?client_id=
?
A more elegant way would be to use new URL() and then .searchParams.append('client_id', ...).
new URL()
.searchParams.append('client_id', ...)
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Google requires
?access_type=offline
in the authorization url:This library concats
?client_id=
which leads to two?
.A more elegant way would be to use
new URL()
and then.searchParams.append('client_id', ...)
.The text was updated successfully, but these errors were encountered: