如何将 apiDoc 转换为邮递员集合



我有一个nodejs项目,其中有许多请求由apiDoc实现并很好地记录了,我想从中创建一个Postman集合!

> example:
/**
     * @api {GET} config/updates Updates - Get the latest event updates
     * @apiGroup Config service
     * @apiDescription This api endpoint provides the latest updates that need to be fetched by the client. It provides
         * an array of events, based on either the latestupdate (timestamp) param, or a configured interval (currently default to 1 minute.
...
..
    */

是否可以从 apiDoc 创建邮递员集合?

您可以将 apiDoc 导出到 Swagger,然后将其导入 Postman。

1.出口到招摇

  • 安装此 npm 包

  • npm install apidoc-swagger -g

  • apidoc-swagger -i example/-o doc/(example是输入,doc是输出)

2.在邮递员中导入

Postman 支持招摇文件,因此您可以毫无问题地导入它,您可以在此处阅读有关它的信息,请阅读"导入招摇"部分。

npm 包可能无法正常工作,因为它似乎已经过时了。

相关内容

  • 没有找到相关文章

最新更新