Google Cloud端点REST发现文档缺少格式

时间:2017-02-07 03:35:26

标签: ios google-app-engine google-cloud-endpoints gradle-plugin

我已升级到不再支持RPC的Cloud Endpoints 2.0。因此,我生成了一个新的发现文档,并将服务生成器与REST发现文档一起用作输入,以便为我的iOS应用程序生成客户端库。

使用新的REST发现文档我在尝试生成库时遇到以下错误:

~/workspace/google-api-objectivec-client-for-rest/Source/Tools/ServiceGenerator/build/Release/ServiceGenerator discovery/servUsApi-v1-rest.discovery --outputDir GTLAPI --gtlrFrameworkName GoogleAPIClientForREST

ERROR: Failure, exception: Looking at parameter 'creditKickbackKash:creditAmount', found a type/format pair of 'number/(null)', and don't how to map that to Objective-C

我能够通过在发现文档中添加(在许多地方)手动修复此问题,"格式":" double"所有双参数的键和值。注意下面的creditAmount缺少一种格式,就像所有其他双打一样。

生成的发现文档如下所示:

"creditKickbackKash": {
 "httpMethod": "PUT",
 "id": "servUsApi.admin.creditKickbackKash",
 "parameterOrder": [
  "userId",
  "creditAmount"
 ],
 "parameters": {
  "userId": {
   "format": "int64",
   "location": "path",
   "required": true,
   "type": "string"
  },
  "creditAmount": {
   "location": "path",
   "required": true,
   "type": "number"
  }
 },
 "path": "creditKickbackKash/{userId}/{creditAmount}",
 "response": {
  "$ref": "ResultDTO"
 },
 "scopes": [
  "https://www.googleapis.com/auth/userinfo.email"
 ]
}

还有其他人有这个问题吗?如何生成发现文档以正确格式化文档,包括双号类型?

1 个答案:

答案 0 :(得分:0)

我遇到了同样的问题。我从1.9.50回到1.9.48,问题就消失了。