姜戈。身份验证后端
我需要在一些 atlassian 服务(例如 wiki)和 AD(ActiveDirectory)上进行身份验证。问题是我不知道如何在不同的后端进行身份验证,因此用户仅输入密码并登录一次,然后后端在不同的服务上对用户进行身份验证。正如我在文档中读到的 - django 迭代后端列表,直到用户无法在 django 站点上进行身份验证。或者也许我的想法是错误的? 我应该如何登录其他服务?我了解 CROWD,但猜测它不包括登录我的 MSSQL 数据库的功能。
I need to authenticate on some of atlassian services(wiki for example) and on AD(ActiveDirectory). The problem is I don't know how to make authentication in different back-ends so user input password and log-in only once and then backends authenticate user on different services. As I read in docs - django iterates through list of backends till user wouldn't be authenticate on django site. Or maybe i at all think in a wrong way?
How should I login on other services? I know about CROWD but guess it doesn't cover functionality for login on my MSSQL DB.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以通过提供自己的后端来自定义身份验证机械化。
请参阅 https://docs.djangoproject.com/en/dev/topics/auth /定制/
you can customize authenticate mechanization by provide your own back-ends.
see https://docs.djangoproject.com/en/dev/topics/auth/customizing/