gpt4 book ai didi

python - oauth2client/appengine.py 返回 "InvalidResponseError: header values must be str, got ' unicode'"与 webapp2/python27/wsgi

转载 作者:太空狗 更新时间:2023-10-30 01:02:31 26 4
gpt4 key购买 nike

之前,我的问题类似于问题Pyramid on App Engine gets "InvalidResponseError: header values must be str, got 'unicode' , 和几个 google-api-python-client bugs ,但对我来说没有帮助。另外,我在 issue #254 上没有答案。 (它本身看起来类似于 #111 ,所以我在这里尝试。

在本地 GAE 上,下面的简单示例(this sample 的简化和 python27 化版本)返回 InvalidResponseError: header values must be str, got 'unicode',尽管我的代码是 进行任何 unicode header 设置。更准确地说,我期待结果 Hello,但我有:

Internal Server Error
The server has either erred or is incapable of performing the requested operation.
Traceback (most recent call last):
File "/home/ronj/.gae/lib/webapp2-2.5.2/webapp2.py", line 1546, in __call__
return response(environ, start_response)
File "/home/ronj/.gae/lib/webob_0_9/webob/__init__.py", line 2000, in __call__
start_response(self.status, self.headerlist)
File "/home/ronj/.gae/google/appengine/runtime/wsgi.py", line 156, in _StartResponse
(_GetTypeName(value), value, name))
InvalidResponseError: header values must be str, got 'unicode' (u'https://accounts.google.com/o/oauth2/auth?state=http%3A%2F%2Flocalhost%3A8080%2F&redirect_uri=http%3A%2F%2Flocalhost%3A8080%2Foauth2callback&response_type=code&client_id=xxxxxxxxxxxx.apps.googleusercontent.com&scope=https%3A%2F%2Fwww.googleapis.com%2Fauth%2Fyoutube&access_type=offline') for 'Location'

有什么想法吗?我在 Ubuntu 12.10 x64 上的 Python 2.7.3 上使用 GAE 1.7.5。

编辑:乔纳斯在 issue #254 中提供了答案: “在 OAuth2WebServerFlow 上生成 URL 的方法中添加一些 str() 应该相对容易。在 oauth2client/client.py 中的第 830 行返回之前用 str() 包装”
→ 这看起来不错,但我应该如何实现呢?我同意我可以修改我安装了 GAE 的本地机器上的文件,但是一旦部署,将使用 Google 的 GAE,对吗?我怎样才能覆盖它? (对于新手问题感到抱歉)

感谢您的帮助!


app.yaml:

application: yourapp
version: 1
runtime: python27
api_version: 1
threadsafe: true

handlers:

- url: /
script: yourapp.main

libraries:
- name: webapp2
version: latest

你的应用程序.py:

import webapp2, os, httplib2
from apiclient.discovery import build
from oauth2client.appengine import oauth2decorator_from_clientsecrets
from google.appengine.api import memcache

CLIENT_SECRETS = os.path.join(os.path.dirname(__file__), 'client_secrets.json')
MISSING_CLIENT_SECRETS_MESSAGE = "Warning: Please configure OAuth 2.0"
YOUTUBE_READ_WRITE_SCOPE = "https://www.googleapis.com/auth/youtube"
YOUTUBE_API_SERVICE_NAME = "youtube"
YOUTUBE_API_VERSION = "v3"

http = httplib2.Http(memcache)
youtube = build(YOUTUBE_API_SERVICE_NAME, YOUTUBE_API_VERSION, http=http)
decorator = oauth2decorator_from_clientsecrets(
CLIENT_SECRETS,
scope=YOUTUBE_READ_WRITE_SCOPE,
message=MISSING_CLIENT_SECRETS_MESSAGE)


class MainPage(webapp2.RequestHandler):

@decorator.oauth_required
def get(self):
self.response.headers['Content-Type'] = 'text/plain'
self.response.write('Hello')

main = webapp2.WSGIApplication([('/', MainPage)], debug=True)

最佳答案

即使我已经在使用最新版本的 apiclient,我也遇到了同样的问题。

对我来说解决这个问题的答案是在问题跟踪器中发布的http://code.google.com/p/google-api-python-client/issues/detail?id=254

不工作

flow = client.flow_from_clientsecrets(CLIENT_SECRETS,scope=scopes)
callback = self.request.relative_url('/oauth2callback')
auth_url = flow.step1_get_authorize_url(callback)
return self.redirect(auth_url)

工作

flow = client.flow_from_clientsecrets(CLIENT_SECRETS,scope=scopes)
callback = self.request.relative_url('/oauth2callback')
auth_url = str(flow.step1_get_authorize_url(callback))
return self.redirect(auth_url)

注意 str() 包装了 flow.step1_get_authorize_url 调用

关于python - oauth2client/appengine.py 返回 "InvalidResponseError: header values must be str, got ' unicode'"与 webapp2/python27/wsgi,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15668592/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com