-
-
Notifications
You must be signed in to change notification settings - Fork 108
Description
Is there any tutorial or getting started guide for users that want to setup their IdP to allow a (Django) Python app to work with SSO, in particular OIDC? The Django app already has everything in it that's needed and it works for a lot of people for example with Okta. However it would be good to have some documentation we can direct our users to to know what to setup in their IdP. The most imporant one being the Redirect URI. From what I can see I think it has to be https://<relying_partty_fqdn>/complete/<backend_name>, for example https://myapp.com/complete/oidc. Is that correct? Anything that must be setup such as logouturl? backchannel logout?
I've looked at https://github.com/python-social-auth/social-docs/blob/master/docs/developer_intro.rst and https://github.com/python-social-auth/social-docs/blob/master/docs/backends/oidc.rst. And basically all other pages and used the search, but couldn't find a tutorial that has the IdP steps in it.