我目前正在使用 Slim 框架开发 REST API。
为了测试我的 API,我正在使用邮递员,但我无法检索 slim 方法发送的状态码:
$response->withJson($data, $status, $encodingOptions)
$slimApp->post('/v1/users', function(Request $request, Response $response) {
echo $response->withJson(['data' => 'something'], 400);
});
我将状态代码设置为“400”,但邮递员一直说这是“200”状态。
slim发送的标头是:
HTTP/1.1 400 错误请求
内容类型:application/json;
字符集=utf-8
事实是,我可以通过header手动验证代码状态,但我想通过postman的collection runner来验证。
您对这种邮递员行为有任何想法吗?