Closed califlower closed 2 years ago
That error is coming from this section of code: https://github.com/oauthlib/oauthlib/blob/master/oauthlib/oauth2/rfc6749/parameters.py#L466
So it appears that you can do
export OAUTHLIB_RELAX_TOKEN_SCOPE=1
before running your app to make things work. However I am not sure of the other implications here...
That error is coming from this section of code: https://github.com/oauthlib/oauthlib/blob/master/oauthlib/oauth2/rfc6749/parameters.py#L466
So it appears that you can do
export OAUTHLIB_RELAX_TOKEN_SCOPE=1
before running your app to make things work. However I am not sure of the other implications here...
I did this, and dont solve the issue.
Edit "https://github.com/AngellusMortis/django_microsoft_auth/blob/master/microsoft_auth/client.py" and look for SCOPE_MICROSOFT = ["openid", "email", "profile"] change to SCOPE_MICROSOFT = ["User.Read", "openid", "email", "profile"]
Hi,
Running version 2.4.1 Running in docker on ubuntu I seem to be getting the following error (it seems new?) I haven't had this issue in the past. It seems new. I'm running in single tenant mode. I don't have any data in the database right now. It's empty with no users