我正在使用Google App Engine上的Cloud Endpoints Frameworks快速入门。部署应用程序后,我尝试按照快速入门中所述向API发送请求:
curl -H "Content-Type: application/json" -X POST -d '{"content":"Hello world!"}' https://[my-app].appspot.com/_ah/api/echo/v1/echo
它返回以下错误消息:
{
"error": {
"code": 503,
"errors": [
{
"domain": "global",
"message": "Internal Server Error",
"reason": "backendError"
}
],
"message": "Internal Server Error"
}
}
在endpoints-frameworks-v2 / echo示例中创建了4个API。当我转到API资源管理器并尝试测试前3个API时,我收到相同的错误消息。在我授权并执行它之后,最后一个API get_user_email按预期工作。
任何帮助都会很棒。
答案 0 :(得分:0)
事实证明,我输入的内容是一个虚假错误:
ValidationError: Expected type <type 'unicode'> for field content, found (None, None) (type <type 'tuple'>)
在我投入预期类型之后没有问题。