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
I was getting the error ModuleNotFoundError: No module named 'djangooidc' because of the line path('openid/', include('djangooidc.urls')), at the file urls.py
Then I changed it to be path('openid/', include('mozilla_django_oidc.urls')) then I got a new error openid/login Page not found when opening the login page, what am I missing here?
You did the right thing substituting mozilla_django_oidc.urls. I missed updating that in the README.md. auth_uri should point to your Keycloak server which serves the login page.
I was getting the error
ModuleNotFoundError: No module named 'djangooidc'
because of the linepath('openid/', include('djangooidc.urls')),
at the file urls.pyThen I changed it to be
path('openid/', include('mozilla_django_oidc.urls'))
then I got a new erroropenid/login Page not found
when opening the login page, what am I missing here?I only changed the values for:
auth_uri = "https://auth.theboss.io/auth/realms/BOSS"
client_id = ""
public_uri = "http://localhost:8000"
I am using generic Django setup based on the article but using boss-oidc2
With the following versions:
Django 4.1.1
Python 3.9.13
Keycloak 18.0.2
The text was updated successfully, but these errors were encountered: