2016-02-10 9:15 GMT-03:00 Sami Pietilä <[email protected]>: > Hi, > > The organization I work for has a Single Sign-On. I would like to > authenticate pyramid application user with the SSO. I am not that familiar > with SSO, but I guess I have first to forward to the SSO by doing something > like: (response = Response(status_int=302, location=" > https://sso.myorganization.com")) and also somehow tell to SSO where to > redirect back after successful authentication. After SSO has redirected > back to pyramid app there should be a cookie set by SSO from which I can > somehow discover which user has authenticated. > > How can I authenticate user against external SSO in pyramid app? Pyramid > docs search gave nothing when I tried with "single sign-on" or "SSO". > > Thanks >
I believe pyramid_who [1] is your best chance to do what you need. [1] http://docs.pylonsproject.org/projects/pyramid-who/en/latest/ -- You received this message because you are subscribed to the Google Groups "pylons-discuss" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To post to this group, send email to [email protected]. Visit this group at https://groups.google.com/group/pylons-discuss. For more options, visit https://groups.google.com/d/optout.
