5

我有一个 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 创建邮递员集合吗?

4

1 回答 1

4

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

1.导出到 Swagger

  • 安装这个npm 包

  • npm install apidoc-swagger -g

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

2.在邮递员中导入

Postman 支持 swagger 文件,因此您可以毫无问题地导入它,您可以在此处阅读“导入 swagger”部分。

npm 包可能无法工作,因为它看起来已经过时了。

于 2017-10-19T09:21:31.217 回答