python oauthlib:在逸出ValueError中“只能逃避unicode对象" [英] python oauthlib: in escape ValueError "Only unicode objects are escapable"

查看:31
本文介绍了python oauthlib:在逸出ValueError中“只能逃避unicode对象"的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我正在使用 python-social-auth 从Django应用程序登录社交网络.在本地计算机上,一切正常,但是当我部署到服务器时,出现以下错误:

I'm using python-social-auth to login with social networks from my Django application. On my local machine everything works fine, but when I deploy to a server I get the following error:

oauthlib.oauth1.rfc5849.utils in escape
ValueError: Only unicode objects are escapable. Got None of type <type 'NoneType'>.

Stacktrace:

Stacktrace:

File "django/core/handlers/base.py", line 112, in get_response
    response = wrapped_callback(request, *callback_args, **callback_kwargs)
File "social/apps/django_app/utils.py", line 45, in wrapper
    return func(request, backend, *args, **kwargs)
File "social/apps/django_app/views.py", line 12, in auth
    return do_auth(request.social_strategy, redirect_name=REDIRECT_FIELD_NAME)
File "social/actions.py", line 25, in do_auth
    return strategy.start()
File "social/strategies/base.py", line 66, in start
    return self.redirect(self.backend.auth_url())
File "social/backends/oauth.py", line 99, in auth_url
    token = self.set_unauthorized_token()
File "social/backends/oauth.py", line 158, in set_unauthorized_token
    token = self.unauthorized_token()
File "social/backends/oauth.py", line 177, in unauthorized_token
    method=self.REQUEST_TOKEN_METHOD)
File "social/backends/base.py", line 202, in request
    response = request(method, url, *args, **kwargs)
File "requests/api.py", line 44, in request
    return session.request(method=method, url=url, **kwargs)
File "requests/sessions.py", line 349, in request
    prep = self.prepare_request(req)
File "requests/sessions.py", line 287, in prepare_request
    hooks=merge_hooks(request.hooks, self.hooks),
File "requests/models.py", line 291, in prepare
    self.prepare_auth(auth, url)
File "requests/models.py", line 470, in prepare_auth
    r = auth(self)
File "requests_oauthlib/oauth1_auth.py", line 87, in __call__
    unicode(r.url), unicode(r.method), None, r.headers)
File "oauthlib/oauth1/rfc5849/__init__.py", line 293, in sign
    request.oauth_params.append(('oauth_signature', self.get_oauth_signature(request)))
File "oauthlib/oauth1/rfc5849/__init__.py", line 128, in get_oauth_signature
    uri, headers, body = self._render(request)
File "oauthlib/oauth1/rfc5849/__init__.py", line 199, in _render
    headers = parameters.prepare_headers(request.oauth_params, request.headers, realm=realm)
File "oauthlib/oauth1/rfc5849/utils.py", line 31, in wrapper
    return target(params, *args, **kwargs)
File "oauthlib/oauth1/rfc5849/parameters.py", line 57, in prepare_headers
    escaped_value = utils.escape(value)
File "oauthlib/oauth1/rfc5849/utilsy", line 56, in escape
    'Got %s of type %s.' % (u, type(u)))

requirements.txt 文件中的某些软件包:

Some packages from requirements.txt file:

Django==1.6.6
google-api-python-client==1.1
oauth2==1.5.211
oauthlib==0.6.3
python-openid==2.2.5
python-social-auth==0.1.26
requests==2.4.0
requests-oauthlib==0.4.1
six==1.7.3

推荐答案

在django设置文件中未提供OAuth使用者密钥和机密时,出现此错误.本质上是找不到所需的设置"错误.部署时是否值得检查所有成功复制的设置?

I got this error when I did not provide my OAuth Consumer key and secrets in my django settings file. It's essentially a "Required setting not found" error. Is it worth checking all your settings copied across successfully when you deployed?

这篇关于python oauthlib:在逸出ValueError中“只能逃避unicode对象"的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆