0

所以我使用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 ?

4

1 回答 1

2

OpenApi 代码生成器在后台使用connexion库,在他们建议使用 flask_cors 的文档中,请参阅:here

我目前正在使用从原件派生的自定义胡子模板,所以在\__main__.mustache我添加了这些行

from flask_cors import CORS
....
CORS(app.app)
app.run(port=.....)

确保安装flask_cors 或将其添加到您的 requirements.txt

PS您可以指定模板位置generate ... -t TEMPALTE/FOLDER?LOCATION

于 2020-03-04T16:38:04.150 回答