php小编香蕉在使用OpenApi Generator Golang时,遇到了一个问题:当在查询参数中结束请求时,如何添加标头以修复这个问题。在这篇文章中,我们将探讨这个问题的解决方案,并提供一些实用的技巧和步骤,帮助读者解决类似的问题。无论你是初学者还是有经验的开发者,本文都将为你提供有价值的信息和指导。让我们一起来看看如何修复这个问题吧!
我正在尝试生成一个 go 客户端,但生成器无法识别标头,并且不允许我将其作为标头传递到服务器 - 相反,它作为查询参数发送。
info: title: api version: "1.2" servers: - url: https://example.com paths: /ping: get: summary: checks if the server is alive parameters: - in: header name: x-request-id schema: type: string format: uuid required: true responses: '200': description: request has been successful content: application/json: schema: type: object properties: returned_url: type: string
这是我正在使用的生成器:
# https://github.com/openapitools/openapi-generator/blob/master/docs/generators/go.md docker run --rm -v "${pwd}:/local" openapitools/openapi-generator-cli generate \ -i /local/spec.yaml \ -g go \ -o /local/internal/infrastructure/sdk \ -p enumclassprefix=true \ -p generateinterfaces=true \ -p isgosubmodule=true \ -p packagename=sdk
您会注意到它生成了这一行,它将我传递给查询参数的标头值添加到:
parameterAddToQuery(localVarQueryParams, "X-Request-ID", r.xRequestID, "")
这是一个错误吗?对此我能做什么?
这看起来像是 go 模板中的一个错误: https://www.php.cn/link/88d25099b103efd638163ecb40a55589
它应该类似于 Java 模板中的完成方式: https://www.php.cn/link/227bd2473d68947040e511b7f29ce553
以上是OpenApi Generator Golang - 添加标头以在查询参数中结束的请求如何修复?的详细内容。更多信息请关注PHP中文网其他相关文章!