所以我使用openapi-generator来生成一个烧瓶服务器来服务我的 api。
我可以毫无问题地生成运行它的服务器并在浏览器中查看端点。但是,当我从我的 React Web 应用程序发出 GET 请求时,我收到了一个 CORS 错误。
我尝试了一些方法来启用 CORS。
我尝试将标头添加到我的 .yaml 中的端点。
/pipelines:
get:
summary: 'Returns a list of pipelines.'
operationId: get_pipelines
responses:
'200':
description: 'A JSON array of pipelines'
content:
application/json:
schema:
$ref: '#/components/schemas/Pipeline'
headers:
Access-Control-Allow-Origin: '*'
default:
description: Unexpected error
content:
'application/json':
schema:
$ref: '#/components/schemas/ErrorMessage'
当我尝试通过 .yaml 添加标头并尝试重新生成服务器模块时,出现此错误:
-attribute paths.'/pipelines'(get).responses.200.Access-Control-Allow-Origin is not of type `object
我还尝试在服务器模块的主.py 中安装和导入 flask_cors 。
#!/usr/bin/env python3
import connexion
from openapi_server import encoder
from flask_cors import CORS
def main():
app = connexion.App(__name__, specification_dir='./openapi/')
CORS(app.app)
app.app.json_encoder = encoder.JSONEncoder
app.add_api('openapi.yaml',
arguments={'title': 'ICDR API'},
pythonic_params=True)
app.run(port=5050)
if __name__ == '__main__':
main()
我同时尝试了这两种方法。我在 swagger-codegen petstore.yaml示例和connexion docs中找到了这些修复。
但是,正如我所说,我使用的是 openapi-generator,因此它与其他工具中的任何一个都有些不同,但是我很难找到有关如何正确设置它的任何信息。在谁能帮助我之前,有没有人使用过 openapi-generator ?