1

我正在尝试使用 django-social-auth 在我的应用程序中实现 google openid 登录,我的问题是我收到此错误:

TemplateSyntaxError at /login
Caught ImportError while rendering: cannot import name get_backend
Request Method: GET
Request URL:    #############################
Django Version: 1.3.1
Exception Type: TemplateSyntaxError
Exception Value:    
Caught ImportError while rendering: cannot import name get_backend
Exception Location: /home/group018/web/WSProject/social_auth/views.py in <module>, line 19
Python Executable:  /usr/bin/python2.7
Python Version: 

在异常位置,您可以看到我的项目的层次结构。

view.py文件如下:

from functools import wraps

from django.http import HttpResponseRedirect, HttpResponse,HttpResponseServerError
from django.core.urlresolvers import reverse
from django.contrib.auth import login, REDIRECT_FIELD_NAME
from django.contrib.auth.decorators import login_required
from django.contrib import messages
from django.utils.importlib import import_module
from django.views.decorators.csrf import csrf_exempt

from WSProject.social_auth.utils import sanitize_redirect, setting, log,backend_setting, clean_partial_pipeline
from WSProject.social_auth.backends import get_backend

DEFAULT_REDIRECT = setting('SOCIAL_AUTH_LOGIN_REDIRECT_URL') or setting('LOGIN_REDIRECT_URL')
LOGIN_ERROR_URL = setting('LOGIN_ERROR_URL', setting('LOGIN_URL'))
RAISE_EXCEPTIONS = setting('SOCIAL_AUTH_RAISE_EXCEPTIONS', setting('DEBUG'))
PROCESS_EXCEPTIONS = setting('SOCIAL_AUTH_PROCESS_EXCEPTIONS','social_auth.utils.log_exceptions_to_messages')


def dsa_view(redirect_name=None):

.
.
.

函数 get_backend 在中定义WSProject/social_auth/backends/__init__.py,我尝试将其导入为:

from WSProject.social_auth.backends.__init__ import get_backend

但它不起作用......有什么想法吗?

请注意,下面的导入到我说的那个是有效的

已解决:最后我做到了,问题出在库上,正如 jpic 所说,它们没有正确安装。

4

1 回答 1

2

你试过这个吗?

from social_auth.backends import get_backend

您不应该在代码中硬编码项目名称。这使得代码的可移植性降低。

如果这不起作用,那么您没有正确安装 django-social-auth。修复您的设置:

  1. 在项目的父目录中创建一个 virtualenv似乎很公平:virtualenv /path/to/venv

  2. 激活 virtualenvsource /path/to/venv/bin/activate

  3. 安装一个应用程序,即。来自 git:pip install -e git+git://github.com/omab/django-social-auth.git#egg=social_auth

我还写了一篇关于django、virtualenv 和 pip的更详细的文章,这应该是你感兴趣的。

于 2012-03-05T10:03:12.027 回答