Microsoft sso не работает в social-auth-app-django=5.4.0 в Django

Мы использовали пакет social-auth-app-django=5.4.0 для sso как Microsoft, так и Google. Google SSo работает правильно, но Microsoft SSO не работает. Он показывает следующую ошибку при попытке SSO.

Backend not found
Request Method: GET
Request URL:    http://0.0.0.0:9090/login/microsoft-oauth2/
Raised by:  social_django.views.auth
Using the URLconf defined in jenkins_mail.urls, Django tried these URL patterns, in this order:

app/
[name='home']
admin/
login/<str:backend>/ [name='begin']
The current path, login/microsoft-oauth2/, matched the last one.

You’re seeing this error because you have DEBUG = True in your Django settings file. Change that to False, and Django will display a standard 404 page.```
Вернуться на верх