gpt4 book ai didi

swagger - 使用 swagger 4.x 包生成 swagger 2.0 yaml

转载 作者:行者123 更新时间:2023-12-04 09:38:03 27 4
gpt4 key购买 nike

我要将我的 API 服务器集成到 Google Cloud Endpoints。

到目前为止,Google Cloud Endpoints 支持 swagger 2.0。

但是我的依赖项/库现在是 up 版本。所以我想在不降级 swagger 库版本的情况下生成 swagger 2.0 yaml 文件(api 端点已经用 swagger 4.x - openapi 3.0 规范进行了描述)。

Nestjs 和 swagger 依赖项(package.json):

...

"@nestjs/common": "^7.0.0",
"@nestjs/config": "^0.4.0",
"@nestjs/core": "^7.0.0",
"@nestjs/platform-express": "^7.0.0",
"js-yaml": "^3.14.0",

...

"@nestjs/swagger": "^4.5.4",
"swagger-ui-express": "^4.1.4",

...

和 swagger 生成器脚本:
import { NestFactory } from '@nestjs/core';
import { AppModule } from './app.module';
import * as fs from 'fs'
import * as yaml from 'js-yaml'

const generateSwaggerYaml = async () => {
const app = await NestFactory.create(AppModule);
const options = new DocumentBuilder()
.setTitle('API Title')
.setDescription('API Description')
.build()

const document = SwaggerModule.createDocument(app, options)

fs.writeFileSync("./openapi-run.yaml", yaml.safeDump(document))
}


generateSwaggerYaml()

脚本的输出是 openapi 3.0 规范:(
openapi: 3.0.0
info:
title: API Title
description: API Description.
version: 1.0.0
contact: {}
tags: []
servers: []

...

是否有任何选项/方法可以从 openapi 3.0 文档生成 swagger2.0 yaml?

如何将 openapi 3.0 规范降级为 swagger 2.0 规范?

最佳答案

我为此使用了来自 github 的这个项目:https://github.com/LucyBot-Inc/api-spec-converter

openapi 3 yaml 到swagger 2 yaml,就这么简单$ api-spec-converter --from openapi_3 --syntax yaml --to swagger_2 ${f} > ${SWAGGER_V2_FILE}

关于swagger - 使用 swagger 4.x 包生成 swagger 2.0 yaml,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/62460657/

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