使用 Django 1.11 和 Python 3.6 将 social_auth 迁移到 django_social
Migrating social_auth to django_social using Django 1.11 and Python 3.6
我在尝试使用 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
它们是否已弃用?有更新的版本可以使用吗?
根据过去版本的 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.
我在尝试使用 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
它们是否已弃用?有更新的版本可以使用吗?
根据过去版本的 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.