gpt4 book ai didi

google-app-engine - 是否可以向 API Explorer 中的 Cloud Endpoint 字段添加描述?

转载 作者:行者123 更新时间:2023-12-04 04:46:48 26 4
gpt4 key购买 nike

我已经在 Google API 中看到了这一点。 Cloud Endpoints 也可以吗?

enter image description here

https://developers.google.com/apis-explorer/#p/adexchangebuyer/v1.2/adexchangebuyer.accounts.get

最佳答案

这是完全可能的。我们有一些关于猴子补丁的 StackOverflow 帖子,这将是另一个很好的例子。

例如:
How do I specify my own icons so they show up in a Google Endpoints API discovery document?

对于这种情况,在 /_ah/spi/BackendService.getApiConfigs 提供的内容包含您的 API 配置,您在此处需要的“描述”用于“参数”。

所以例如在方法中

@endpoints.method(MySchema, MySchema,
path='myschema/{strField}', name='myschema.echo')
def MySchemaEcho(self, request):
return request

领域 strField是一个路径“参数”,所以在 API 配置中我们会看到
{
...
"methods": {
"myapi.myschema.echo": {
...
"request": {
...
"parameters": {
"strField": {
"required": true,
"type": "string"
}
}
},
...
}
...
}
}

要在那里获得您的描述,您需要将其添加到 strField 下列出的字典中。所以它读
          "strField": {
"required": true,
"type": "string",
"description": "Most important field that ever was."
}

关于google-app-engine - 是否可以向 API Explorer 中的 Cloud Endpoint 字段添加描述?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18060921/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com