嗨我正在尝试使用此文档go-endpoints
开发一个rest API我可以在本地和应用引擎上测试我的应用。
但我不能创建一个Java客户端,以便在Android设备上使用它, 出于某种原因,我得到了一个
HTTP 400无法解码JSON对象
关于此命令
GO_SDK/endpointscfg.py gen_client_lib java MY_FILE_NAME
这是完整的堆栈跟踪
mik@mik-Aspire-S3:~/go-programs/src/cloudEndPoints/app$ $HOME/go_appengine/endpointscfg.py gen_client_lib java ballota_test
Traceback (most recent call last):
File "/home/mik/go_appengine/endpointscfg.py", line 133, in <module>
run_file(__file__, globals())
File "/home/mik/go_appengine/endpointscfg.py", line 129, in run_file
execfile(_PATHS.script_file(script_name), globals_)
File "/home/mik/go_appengine/google/appengine/tools/endpointscfg.py", line 561, in <module>
main(sys.argv)
File "/home/mik/go_appengine/google/appengine/tools/endpointscfg.py", line 557, in main
args.callback(args)
File "/home/mik/go_appengine/google/appengine/tools/endpointscfg.py", line 458, in _GenClientLibCallback
args.build_system)
File "/home/mik/go_appengine/google/appengine/tools/endpointscfg.py", line 335, in _GenClientLib
build_system, client_name)
File "/home/mik/go_appengine/google/appengine/tools/endpointscfg.py", line 366, in _GenClientLibFromContents
raise ServerRequestException(error)
__main__.ServerRequestException: HTTP 400 (Bad Request) error when communicating with URL: https://google-api-client-libraries.appspot.com/generate. Details: ill-formed JSON: No JSON object could be decoded
更新
我尝试将此示例项目tictactoe构建为Java客户端,我得到了相同的错误
答案 0 :(得分:0)
我发布了一个问题 crhym3云端点示例,他帮助我理解了我的错误。
我的错误是我尝试使用错误的URL地址创建客户端。
这是错误的地址。
https://winged-precept-894.appspot.com这将返回404
这是正确的发现api网址。
https://winged-precept-894.appspot.com/_ah/api/discovery/v1/apis/myapp/v1/rpc
所以这是一个url错误而不是面向Json的错误。