使用角度JS和Django进行Facebook身份验证

时间:2017-05-31 16:41:28

标签: django django-rest-framework python-social-auth

我是角度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)

2 个答案:

答案 0 :(得分:1)

我使用python scocial auth创建了Social Auth身份验证。你可以查看: https://github.com/ranvijay-sachan/django-rest-login-and-social_auth/tree/master/profiles

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

data a;
x=1;
y=2;
output;
x=3;
y=4;
output;
run;
data b;
x=7;
y=8;
output;
run;

data c;
set b a;
run;

答案 1 :(得分:0)

问题是我忘了导入模块。

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