0
votes

I'm configure Web SSO authentication by using ADFS on this guide. Му back-end developed using Django. How to generate Django request for user authentication? As I understand request looks like this.:

decoded: adfsresource.treyresearch.net/adfs/ls/auth/integrated/?wa=wsignin1.0&wreply=https://adfsweb.treyresearch.net/claimapp/&wct=2016-07-27T14:58:30Z&wctx=5f64b4e7-8907-47df-9526-5450b4ce0660

How generate wctx on django? I'm found:

Wctx: This is some session data that the application wants sent back to it after the user authenticates. How generate wctx on django

What protocols using in this process (to adfs and back)?

ADFS 1.1, django 1.9.7, firefox

Thanks

1

1 Answers

0
votes

Why don't you use directly the SAML protocol?. ADFS supports SAML and I think is easier to setup than ws-fed (and also more adopted).

You will need to add SAML support to the django app, in order to do that you have 2 alternatives:

Both are well documented.

Info about how configure ADFS as SAML Identity Provider here

Other alternative is to use Oauth2.