纽曼:HTTP状态为400时没有响应消息(在Postman I'v消息中作为响应)

时间:2017-11-16 08:26:11

标签: newman

我在 Postman Newman 中准备收藏。

在回复的情况下,在纽曼的“错误请求”中没有任何详细信息发生的短信息 [400 Bad Request,1.06GB,338ms]

postman 中的相同请求给了我带有广泛描述的消息

{
    "code": 400,
    "message": "01070151:3: Rule [/Common/my-irule] error: Unable to find pool ( my-pool) referenced at line 5: [active_members my-pool]",
    "errorStack": [],
    "apiError": 3
}

我想在 newman 中收到相同的消息 - 是否有可能?

1 个答案:

答案 0 :(得分:0)

在请求的“测试”部分中包含以下测试,以便在命令行中获取响应正文。

tests["Response: " + responseBody] = true;

在执行期间记录请求。

tests["Request: " + JSON.stringify(request)] = true;