76efb6fc68
This implements a very small part of the OIDC session management as described in http://openid.net/specs/openid-connect-session-1_0-17.html#rfc.section.5. It does not implement the full session management (using iframes) and does not implement the registration and verification of logout redirect uri's.
16 lines
591 B
Python
16 lines
591 B
Python
from django.conf.urls import patterns, include, url
|
|
from django.views.decorators.csrf import csrf_exempt
|
|
from oidc_provider.views import *
|
|
|
|
|
|
urlpatterns = patterns('',
|
|
|
|
url(r'^authorize/$', AuthorizeView.as_view(), name='authorize'),
|
|
url(r'^token/$', csrf_exempt(TokenView.as_view()), name='token'),
|
|
url(r'^userinfo/$', csrf_exempt(userinfo), name='userinfo'),
|
|
url(r'^logout/$', LogoutView.as_view(), name='logout'),
|
|
|
|
url(r'^\.well-known/openid-configuration/$', ProviderInfoView.as_view(), name='provider_info'),
|
|
url(r'^jwks/$', JwksView.as_view(), name='jwks'),
|
|
|
|
)
|