使用 Python 设置 Azure Active Directory SAML
Setup Azure Active Directory SAML using Python
我已经通过 Portal 为我的本地 Flask 应用程序设置了带有 SAML2.0 SSO 设置的 Azure Active Directory。
有人可以推荐任何图书馆或文章,其中包含有关如何在 python flask 应用程序上实施基于 SAML 的身份验证的示例吗?
我检查了一些库,但无法找到如何设置 API 以及如何使用 python 进行配置。
can someone suggest any library or article with the example on how to implement SAML based authentication on python flask application?
此 guide describes how to use PySAML2 to add support for Okta (via SAML) to applications written in Python. And refer to the 用于在 Python/Flask 中实施 SAML SP。
另外,你可以使用OneLogin提供和支持的开源库,参考这个article。
我已经通过 Portal 为我的本地 Flask 应用程序设置了带有 SAML2.0 SSO 设置的 Azure Active Directory。
有人可以推荐任何图书馆或文章,其中包含有关如何在 python flask 应用程序上实施基于 SAML 的身份验证的示例吗?
我检查了一些库,但无法找到如何设置 API 以及如何使用 python 进行配置。
can someone suggest any library or article with the example on how to implement SAML based authentication on python flask application?
此 guide describes how to use PySAML2 to add support for Okta (via SAML) to applications written in Python. And refer to the
另外,你可以使用OneLogin提供和支持的开源库,参考这个article。