问题标签 [postman-mocks]

For questions regarding programming in ECMAScript (JavaScript/JS) and its various dialects/implementations (excluding ActionScript). Note JavaScript is NOT the same as Java! Please include all relevant tags on your question; e.g., [node.js], [jquery], [json], [reactjs], [angular], [ember.js], [vue.js], [typescript], [svelte], etc.

0 投票
1 回答
672 浏览

postman - 带有路径变量的 Postman Mock

所以我已经成功设置了一个邮递员模拟服务器,并且可以利用在 api url 中没有任何路径变量的简单 GET,但是所有类似{{url}}/users/:urserId或类似的 GET 都{{url}}/users/:userId/favorits在响应mockRequestNotFoundError

只是想找出使用​​路径变量的正确方法

在此处输入图像描述

0 投票
1 回答
87 浏览

postman - Access Postman Examples from tests

I am developing a API, and have a Postman collection used with extensive tests on the endpoints. I also used Examples to be able to mock a good chunk of the API.

However, whenever something is planned to change in the response, I have to edit the tests and examples in almost the same way. In some cases, it would make sense to have the test depend directly on the example response for a part, or even the entire response.

It would make it much easier for those tests to be able to reference the example value:

The Postman API reference how to access a lot of things, but there seems to be no way to either access the examples data nor read a file (so I could parse the collection JSON file, and fetch the value directy in the exported collection)

0 投票
1 回答
257 浏览

postman - Postman Mock API Server - 在我已经创建集合并将其公开后如何将其设为私有

如标题所示。我已经浏览了 Postman 文档,并在 Postman 桌面应用程序中经历了不同的角落和缝隙,但我无法将我的模拟 api 服务器设为私有。

我已经生成了一个 Postman API 密钥,我将它与模拟 api 中的所有请求一起作为x-api-key标头传递,但它不会改变任何东西。我仍然可以通过简单地将 url 粘贴到浏览器中来访问集合的端点。

当我创建模拟 api 服务器时,我选择公共选项来加快设置,但现在想将其设为私有。

0 投票
1 回答
4742 浏览

rest - Postman GET 响应二进制文件

我正在设置一个模拟服务器,并且想要一个包含图像文件的 GET 响应,我找不到任何有关如何设置它的信息。

Postman 的响应部分只有 - Pretty/Raw/Preview 选项,没有 - from-data/binary?

任何提示表示赞赏!

0 投票
0 回答
1298 浏览

kotlin - Postman Mock API 与 Content-Type 标头的请求不匹配

我正在制作一个模拟邮递员集合以在 android 应用程序中使用。我从一个简单的{{url}}/user/login端点开始,似乎遇到了Content-Type标题问题。Retrofit 默认将其添加为application/json; charset=UTF-8,这很好,但问题是内容正文匹配器似乎无法匹配我的请求正文。在邮递员中这也不起作用,我的例子是 -

(我在x-mock-match-request-body改造和邮递员的请求中都使用了标头)。

当我从我的应用程序发送请求时,该请求被记录为 -

这显然不是以某种方式正确匹配,这很奇怪,我假设它的Content-Type标题是application/json; charset=utf-8,所以如果我在示例和请求中的邮递员中更改它,它不再以某种方式匹配。

最近有没有人遇到过这种情况并知道解决方案?

0 投票
0 回答
111 浏览

postman - 在 Postman 中断言数组中的元素

此循环中的问题//测试以检查 W2B001 也从 API 接收到//测试响应是 Int 或日期

我有一个这样的数组

我想验证日期是否匹配,但我面临的问题是邮递员收到的数组元素并不总是按排序接收。所以它通过了一次,第二次没有通过。任何想法如何解决它?

0 投票
0 回答
358 浏览

ibm-integration-bus - 从 IIB 调用 POSTMAN Mock 服务器

我一直在尝试从我在本地部署的 IIB 流中调用我在 POSTMAN 上制作的模拟服务器。但我得到 java.net.UnknownHostException: 77735a12-4076-4e16-af64-79f0f9b70b61.mock.pstmn.io 我在创建模拟服务器后对其进行了测试,它工作正常。但这次我试图从 POASTMAN 外面击中它。我必须在此处包含 CORS 标头吗?

0 投票
1 回答
80 浏览

postman - 删除邮递员 Cookie

有没有办法使登录调用后保存的邮递员中的 authtoken 过期?我试图编写代码获取响应对象

0 投票
0 回答
440 浏览

postman - 如何在邮递员中编写嵌套测试用例?

例如,如果以下是我的回复:

基于fixedResponse字段值,我可以为每个作业验证创建一个测试用例,如函数中的函数吗?

0 投票
1 回答
616 浏览

postman - 如何验证组件模式中的嵌套属性(Postman 中的 openapi 3)

我正在研究 OpenAPI 3 模式。

我想使用components.schemas响应内容内部的数据模型,并在该数据模型中具有一些必需的嵌套属性。但是,似乎没有required应用验证。我正在使用模拟服务器在 Postman 中对此进行测试。

这是我的架构:

此响应通过验证:

即使我需要的所有属性 ( "required": ["current-page", "per-page", "from", "to", "total", "last-page"]) 都不存在。

基本上,我希望page它的所有嵌套属性都是必需的。

我想我在定义属性时做错了。任何帮助表示赞赏!