使用 AngularJS 和 Django REST 框架的 Facebook 身份验证

标签 facebook angularjs django-rest-framework python-social-auth

我正在使用 AngularJS 开发 SPA 应用程序使用 Django服务器的后端。我从 SPA 与服务器通信的方式是 django-rest-framework .所以现在我想用 facebook(谷歌和推特)进行身份验证,我阅读了很多关于这个主题的内容并找到了 OAuth.io这是在客户端 SPA 端进行身份验证和 python-social-auth它在服务器端做同样的事情。

所以目前我只有客户端身份验证,我的应用程序正在连接到 facebook(使用 OAuth.io)并成功登录。此过程返回 access_token,然后我向我的 API 发出请求,该请求必须登录该用户或通过给定 token 为该用户创建帐户,这部分无法正常工作。所以我不确定我哪里错了,也许是因为没有关于使用 python-social-auth 的完整教程所以也许我遗漏了一些东西或者..我不知道..

所以我有一些代码:

在 SPA 方面:这是与 OAuth.io 的连接并且正在工作,因为我正在获取访问 token 。然后我必须向我的休息 API 发出请求。后端是“facebook”、“google”或“twitter”

OAuth.initialize('my-auth-code-for-oauthio');
OAuth.popup(backend, function(error, result) {
    //handle error with error
    //use result.access_token in your API request

    var token = 'Token ' + result.access_token;
    var loginPromise = $http({
         method:'POST', 
         url: 'api-token/login/' + backend + '/', 
         headers: {'Authorization': token}});

         loginPromise.success(function () {
             console.log('Succeess');
         });
         loginPromise.error(function (result) {
             console.log('error');
         });
});

在我的 settings.py 中的服务器上,我已将社交插件添加到已安装的应用程序、模板上下文预处理器、一些身份验证后端,这是我的文件:

INSTALLED_APPS = (
    'django.contrib.auth',
    'django.contrib.contenttypes',
    'django.contrib.sessions',
    ...,
    'rest_framework',
    'rest_framework.authtoken',
    'api',
    'social.apps.django_app.default',
    'social'
)
TEMPLATE_CONTEXT_PROCESSORS = ("django.contrib.auth.context_processors.auth",
                               "django.core.context_processors.debug",
                               "django.core.context_processors.i18n",
                               "django.core.context_processors.media",
                               "django.core.context_processors.static",
                               "django.core.context_processors.request",
                               "django.contrib.messages.context_processors.messages",
                               'social.apps.django_app.context_processors.backends',
                               'social.apps.django_app.context_processors.login_redirect',)

REST_FRAMEWORK = {
    'DEFAULT_AUTHENTICATION_CLASSES': (
        'rest_framework.authentication.TokenAuthentication',
    )
}

SOCIAL_AUTH_FACEBOOK_KEY = 'key'
SOCIAL_AUTH_FACEBOOK_SECRET = 'secret'
SOCIAL_AUTH_FACEBOOK_SCOPE = ['email']

AUTHENTICATION_BACKENDS = (
      'social.backends.open_id.OpenIdAuth',
      'social.backends.facebook.FacebookOAuth2',
      'social.backends.facebook.FacebookAppOAuth',
      'social.backends.google.GoogleOpenId',
      'social.backends.google.GoogleOAuth2',
      'social.backends.google.GoogleOAuth',
      'social.backends.twitter.TwitterOAuth',
      'django.contrib.auth.backends.ModelBackend',
  )

在 API 的 views.py 中,我有以下内容(我找到了 here ):

from django.contrib.auth.models import User, Group
from rest_framework import viewsets, generics
from rest_framework.views import APIView
from rest_framework.response import Response
from rest_framework import authentication, permissions, parsers, renderers
from rest_framework.authtoken.serializers import AuthTokenSerializer
from rest_framework.decorators import api_view, throttle_classes
from social.apps.django_app.utils import strategy
from rest_framework.permissions import IsAuthenticated, IsAuthenticatedOrReadOnly

from django.contrib.auth import get_user_model
from django.db.models.signals import post_save
from django.dispatch import receiver
from rest_framework.authtoken.models import Token

class ObtainAuthToken(APIView):
    throttle_classes = ()
    permission_classes = ()
    parser_classes = (parsers.FormParser, parsers.MultiPartParser, parsers.JSONParser,)
    renderer_classes = (renderers.JSONRenderer,)
    serializer_class = AuthTokenSerializer
    model = Token

    # Accept backend as a parameter and 'auth' for a login / pass
    def post(self, request, backend):
        serializer = self.serializer_class(data=request.DATA)

        if backend == 'auth':
            if serializer.is_valid():
                token, created = Token.objects.get_or_create(user=serializer.object['user'])
                return Response({'token': token.key})
            return Response(serializer.errors, status=status.HTTP_400_BAD_REQUEST)

        else:
            # Here we call PSA to authenticate like we would if we used PSA on server side.
            user = register_by_access_token(request, backend)

            # If user is active we get or create the REST token and send it back with user data
            if user and user.is_active:
                token, created = Token.objects.get_or_create(user=user)
                return Response({'id': user.id , 'name': user.username, 'userRole': 'user','token': token.key})

@strategy()
def register_by_access_token(request, backend):
    backend = request.strategy.backend
    user = request.user
    user = backend._do_auth(
        access_token=request.GET.get('access_token'),
        user=user.is_authenticated() and user or None
    )
    return user

最后我在 urls.py 中有这些路由:

...
url(r'^api-auth/', include('rest_framework.urls', namespace='rest_framework')),
url(r'^api-token-auth/', 'rest_framework.authtoken.views.obtain_auth_token'),
url(r'^api-token/login/(?P<backend>[^/]+)/$', views.ObtainAuthToken.as_view()),
url(r'^register/(?P<backend>[^/]+)/', views.register_by_access_token),
...

每次当我尝试进行身份验证时,OAuth.io 都在工作并且对 api 的 rqest 返回

detail: "Invalid token"

我认为我在 python-social-auth 的配置中遗漏了一些东西,或者我做错了一切。因此,如果有人有一些想法并想提供帮助,我将很高兴:)

最佳答案

将以下行添加到您的 ObtainAuthToken 类

authentication_classes = ()

并且您的错误 {"detail": "Invalid token"} 将消失。

这就是为什么......

您的请求包含以下 header

Authorization: Token yourAccessToken

但是您已经在 DEFAULT_AUTHENTICATION_CLASSES 中定义了 rest_framework.authentication.TokenAuthentication。

基于此,Django 认为您要执行 token 身份验证,因为您已传入 token 。它失败了,因为这是 facebook 的访问 token ,并且在您的 django *_token 数据库中不存在,因此无效 token 错误。在您的情况下,您需要做的就是告诉 Django 不要为此 View 使用 TokenAuthentication。

仅供引用

请记住,您可能会遇到更多错误,因为您的代码执行在 ObtainAuthToken 的 post 方法执行之前已停止。就个人而言,当我尝试单步执行您的代码时,我收到了错误

'DjangoStrategy' object has no attribute 'backend'

backend = request.strategy.backend

并通过更改为

来解决它
uri = ''
strategy = load_strategy(request)
backend = load_backend(strategy, backend, uri)

此外,您应该更新您的 register_by_access_token 函数,因为它与您引用的博客中的工作代码不一致。博客作者贴出他的最新代码here .您的版本不会从 auth header 中提取 token ,如果您想使用它与第三方(如 facebook)进行身份验证,这是必需的。

关于使用 AngularJS 和 Django REST 框架的 Facebook 身份验证,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20786327/

相关文章:

python - django-rest-swagger : How can I specify the parameter type in the docstring

objective-c - 未找到运行 XC 4.4.1 的 FacebookSDK Mountain Lion 框架

javascript - Firebase AngularFire $保存不需要的结果

javascript - 在 Angular js 中测试加载器

python - DRF - 如何使用 Oauth Toolkit 验证应用程序?

django-rest-framework - 使用 Alamofire POST 数据时 CSRF 失败

facebook - 如何获取用于发送消息的 fb 页面范围用户 ID

iphone - 如何在 friend 的墙上张贴图片和文字

ios - 不推荐使用解析和方法来实现 Facebook

javascript - 将数组发送到 PHP Web 服务并从 MySQL 数据库返回数组