Google 云端点生成 Java api HTTP 400 错误

Google cloud endpoints generate Java api HTTP 400 error

嘿,我正在尝试通过使用此文档 go-endpoints

来休息 API

我可以在本地和应用引擎上测试我的应用程序。

但我无法创建 Java 客户端以便在 android 设备上使用它, 出于某种原因,我收到

HTTP 400 No JSON object could be decoded

在此命令上

  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 客户端,但我遇到了同样的错误

我发布了一个问题 crhym3 云端点示例,他帮助我理解了我的错误。

我的错误是我试图用错误的 URL 地址创建客户端。

这是错误的地址。

https://winged-precept-894.appspot.com 这将 return 404

这是正确的发现 api URL.

https://winged-precept-894.appspot.com/_ah/api/discovery/v1/apis/myapp/v1/rpc

所以这是一个 url 错误,而不是 Json 方向的错误。