我有API使用访问令牌作为放心的标题键和值
Response response = httpRequest.request(Method.POST);
//4. get the response body:
String responseBody = response.getBody().asString();
httpRequest.headers("accesstoken", "pbnQiOiIxMjM0NSJ9.");
System.out.println("Response Body is: "+ responseBody);
//validate city name or validate the key or value
//Assert.assertEquals(responseBody.contains(city), true);
//5. get the status code and validate it:
int statusCode = response.getStatusCode();
System.out.println("the status code is: "+ statusCode);
Assert.assertEquals(statusCode, TestUtil.RESPONSE_CODE_200);
当我运行放心代码时,错误消息为 400。
我看到您正在执行 POST 请求。 400 错误消息表示这是一个错误的请求。因此,请检查您是否要发送尸体。如果您要发送,请检查
- 您要发送和预期的内容类型。是应用程序/json 还是应用程序/xml
- 输入 json 具有所有必需的字段和有效值