0

我在PostmanNewman准备收集。

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

邮递员的相同请求给了我详细描述的消息

{
    "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中得到同样的信息- 有可能吗?

4

1 回答 1

2

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

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

在执行期间记录请求。

tests["Request: " + JSON.stringify(request)] = true;
于 2018-06-06T00:54:34.743 回答