【发布时间】:2023-03-07 10:05:01
【问题描述】:
我在尝试使用 Django 1.11 和 Python 3.6 将 social_auth 模块迁移到 django_social 时遇到问题。我的 models.py 文件中有一些使用
的模型from social_auth.signals import pre_update, socialauth_registered
from social_auth.backends.facebook import FacebookBackend
from social_auth.backends.twitter import TwitterBackend
但我在django_social 中找不到与social_auth.signals 等效的内容
它们被弃用了吗?是否有更新的版本可以使用它们?
【问题讨论】:
标签: python django python-social-auth django-socialauth