2
我嘗試將DrEdit的Python版本聯機(在GAE中)。對Google Drive API使用DrEdit Python示例的錯誤500
現在從drive.google.com使用時正常工作,但是從.appspot.com的地址訪問它產生:
Traceback (most recent call last):
File "/base/python_runtime/python_lib/versions/1/google/appengine/ext/webapp/_webapp25.py", line 701, in __call__
handler.get(*groups)
File "/base/data/home/apps/s~driveedit/1.358524704843584683/main.py", line 282, in get
drive_state = DriveState.FromRequest(self.request)
File "/base/data/home/apps/s~driveedit/1.358524704843584683/main.py", line 120, in FromRequest
return DriveState(request.get('state'))
File "/base/data/home/apps/s~driveedit/1.358524704843584683/main.py", line 106, in __init__
state_data = json.loads(state)
File "/base/python_runtime/python_lib/versions/1/simplejson/__init__.py", line 388, in loads
return _default_decoder.decode(s)
File "/base/python_runtime/python_lib/versions/1/simplejson/decoder.py", line 402, in decode
obj, end = self.raw_decode(s, idx=_w(s, 0).end())
File "/base/python_runtime/python_lib/versions/1/simplejson/decoder.py", line 420, in raw_decode
raise JSONDecodeError("No JSON object could be decoded", s, idx)
JSONDecodeError: No JSON object could be decoded: line 1 column 0 (char 0)
當我添加「打印request.GET中(‘狀態’)」在FromRequest函數中,我得到:
Status: 500 Internal Server Error Content-Type: text/html; charset=utf-8 Cache-Control: no-cache Set-Cookie: userid=MTE2MDU1NTY3NjYxNTUzNzA2MTg2|1335608904|67eb86b0a74414014c05c4085832522f16f322f1; expires=Mon, 28 May 2012 10:28:24 GMT; Path=/ Expires: Fri, 01 Jan 1990 00:00:00 GMT Content-Length: 1206
爲了解決這個問題,我可以看些什麼?