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
does not create a correct OAuth2-Authorize-URL in case the URL stored in config.authorize_url already has URL parameters.
For example the config.authorize_urlhttps://example/oauth2/auth?lang=en would be converted to the OAuth2-Authorize-URL https://example/oauth2/auth?lang=en?client_id=XXXXXX&redirect_uri=YYYYYY&... which has two question marks and thereby will most likely not work as intended in most OAuth2-Environments.
This problem seems to affect many if not all earlier versions of the OAuth-Helper as well.
The text was updated successfully, but these errors were encountered:
In the file:
the code
does not create a correct OAuth2-Authorize-URL in case the URL stored in
config.authorize_url
already has URL parameters.For example the
config.authorize_url
https://example/oauth2/auth?lang=en
would be converted to the OAuth2-Authorize-URLhttps://example/oauth2/auth?lang=en?client_id=XXXXXX&redirect_uri=YYYYYY&...
which has two question marks and thereby will most likely not work as intended in most OAuth2-Environments.This problem seems to affect many if not all earlier versions of the OAuth-Helper as well.
The text was updated successfully, but these errors were encountered: