3

我正在尝试在我的项目中实现 django social auth,但我无法将它与我的自定义用户模型集成。每当我尝试登录 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 登录登录我的 web 应用程序时,它会将我带到 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',
   )

谢谢

4

0 回答 0