2017-05-31 66 views
0

我是角JS和Django的初学者。我在制作Facebook身份验证应用程序时遵循此特定教程。使用角JS和Django的Facebook认证

http://cbdev.blogspot.in/2014/02/facebook-login-with-angularjs-django.html

我跟着教程完全相同。当我启动服务器时,出现错误。

NameError at/

name 'strategy' is not defined 

Request Method:  GET 
Request URL: http://127.0.0.1:8000/ 
Django Version:  1.3.1 
Exception Type:  NameError 
Exception Value:  

name 'strategy' is not defined 

Exception Location:  /root/Documents/django/clueless/clueless_engine/../clueless_engine/views.py in <module>, line 1 
Python Executable: /root/Documents/django/clueless/bin/python 
Python Version:  2.7.13 
Python Path:  

['/root/Documents/django/clueless/clueless_engine', 
'/root/Documents/django/clueless/lib/python2.7', 
'/root/Documents/django/clueless/lib/python2.7/plat-x86_64-linux-gnu', 
'/root/Documents/django/clueless/lib/python2.7/lib-tk', 
'/root/Documents/django/clueless/lib/python2.7/lib-old', 
'/root/Documents/django/clueless/lib/python2.7/lib-dynload', 
'/usr/lib/python2.7', 
'/usr/lib/python2.7/plat-x86_64-linux-gnu', 
'/usr/lib/python2.7/lib-tk', 
'/root/Documents/django/clueless/local/lib/python2.7/site-packages', 
'/root/Documents/django/clueless/lib/python2.7/site-packages'] 

Server time: Thu, 1 Jun 2017 07:30:14 +0530 

我views.py文件

@strategy() 
def auth_by_token(request, backend): 
    backend = request.strategy.backend 
    user=request.user 
    user = backend.do_auth(
     access_token=request.DATA.get('access_token'), 
     user=user.is_authenticated() and user or None 
     ) 
    if user and user.is_active: 
     return user# Return anything that makes sense here 
    else: 
     return None 



@csrf_exempt 
@api_view(['POST']) 
@permission_classes((permissions.AllowAny,)) 
def social_register(request): 
    auth_token = request.DATA.get('access_token', None) 
    backend = request.DATA.get('backend', None) 
    if auth_token and backend: 
     try: 
      user = auth_by_token(request, backend) 
     except Exception, err: 
      return Response(str(err), status=400) 
     if user: 
      strategy = load_strategy(request=request, backend=backend) 
      _do_login(strategy, user) 
      return Response("User logged in", status=status.HTTP_200_OK) 
     else: 
      return Response("Bad Credentials", status=403) 
    else: 
     return Response("Bad request", status=400) 

回答

0

我已经使用python scocial权威性创造社会验证认证。你可以检查: https://github.com/ranvijay-sachan/django-rest-login-and-social_auth/tree/master/profiles

POST:http://localhost:8000/api/v1/login/2/

Content-Type : application/json 

{ "accessToken": "alert token" } 
+0

谢谢。但是你能找到导致这个错误的原因吗? –

+0

我认为你需要导入模块,如: 从social.apps.django_app.utils导入load_strategy 策略= load_strategy(要求) –

+0

我无法相信我错过了! –

0

的问题是,我忘了导入模块。

from social.apps.django_app.utils import load_strategy strategy = load_strategy(request)