尝试使用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
但我找不到与social_auth.signals
django_social
他们被弃用了吗?是否有更新的版本可以使用它们?
答案 0 :(得分:2)
根据过去修订版的signals.py
文件,信号似乎已被弃用且不再使用。
# This module is deprecated, this signals aren't used by the code anymore # and it's functionality should be replaced by pipeline methods.