プロジェクトに django ソーシャル認証を実装しようとしていますが、カスタム ユーザー モデルとの統合に問題があります。Facebook にログインしようとすると、エラーが発生し、常に LOGIN_ERROR_URL ページにリダイレクトされます。
私のsettings.pyファイルは以下のようになります。
FACEBOOK_APP_ID = 'xxxxx'
FACEBOOK_API_SECRET = 'xxxxx'
AUTHENTICATION_BACKENDS = (
'social_auth.backends.facebook.FacebookBackend',
'django.contrib.auth.backends.ModelBackend',
)
SOCIAL_AUTH_PIPELINE = (
'social_auth.backends.pipeline.social.social_auth_user',
'social_auth.backends.pipeline.associate.associate_by_email',
'social_auth.backends.pipeline.misc.save_status_to_session',
'social_auth.backends.pipeline.user.create_user',
'social_auth.backends.pipeline.social.associate_user',
'social_auth.backends.pipeline.social.load_extra_data',
'social_auth.backends.pipeline.user.update_user_details',
'social_auth.backends.pipeline.misc.save_status_to_session',
)
LOGIN_URL = '/user/login_register/'
LOGIN_ERROR_URL = '/user/login_register/'
LOGIN_REDIRECT_URL = '/'
LOGOUT_REDIRECT_URL = '/'
SOCIAL_AUTH_COMPLETE_URL_NAME = 'socialauth_complete'
SOCIAL_AUTH_ASSOCIATE_URL_NAME = 'socialauth_associate_complete'
SOCIAL_AUTH_RAISE_EXCEPTIONS = False
SOCIAL_AUTH_FORCE_POST_DISCONNECT = True
SOCIAL_AUTH_USERNAME_IS_FULL_EMAIL = True
SOCIAL_AUTH_USER_MODEL = 'myapp.MyUser'
FACEBOOK_EXTENDED_PERMISSIONS = ['email']
AUTH_USER_MODEL = 'myapp.MyUser'
そして、私のカスタム ユーザー モデルは以下のように定義されています (電子メールのみを使用し、名、姓、またはユーザー名は使用しません)。
class MyUserManager(BaseUserManager):
def create_user(self, email, password=None):
"""
Creates and saves a User with the given email and password.
"""
if not email:
raise ValueError('Users must have an email address')
user = self.model(
email=MyUserManager.normalize_email(email),
)
user.set_password(password)
user.save(using=self._db)
return user
class MyUser(AbstractBaseUser):
email = models.EmailField(
verbose_name='Email address',
max_length=255,
unique=True,
db_index=True,
)
is_active = models.BooleanField(default=True)
is_admin = models.BooleanField(default=False)
objects = MyUserManager()
USERNAME_FIELD = 'email'
Facebook ログインを使用して webapp にログインしようとすると、Facebook ログイン資格情報ページに移動し、ログインの詳細を入力すると、LOGIN_ERROR_URL ページに戻ります。Facebook のログイン情報を入力しても、アプリに新しいユーザーが作成されません。
私が欠けているものを誰かが助けることができますか?
編集 : -
私が得ているエラーは、以下の AuthFailed (Found user data for token) エラーメッセージです https://github.com/omab/django-social-auth/blob/master/social_auth/backends/facebook.py#L107
詳細については、私の login_resiter.html は次のようになります。
<h4> Or Login Using </h4>
<ul>
<li><a rel="nofollow" href="{% url "socialauth_begin" "facebook" %}">facebook</a></li>
<li><a rel="nofollow" href="{% url "socialauth_begin" "twitter" %}">twitter</a></li>
<li><a rel="nofollow" href="{% url "socialauth_begin" "google-oauth2" %}">google</a></li>
<li><a rel="nofollow" href="{% url "socialauth_begin" "yahoo" %}">yahoo</a></li>
</ul>
TEMPLATE_CONTEXT_PROCESSORS += (
'social_auth.context_processors.social_auth_by_name_backends',
'social_auth.context_processors.social_auth_login_redirect',
)
ありがとう