Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
I'm using the Django framework to make a website. When I create a user in Django, how do I get that user to be created in Kerberos?
使用 Django 信号。
您要寻找的是post_save()信号,只需将用户模型作为发送者发送给它;)
post_save()
有关用户注册的一些示例,请参见django-registration ,