尝试使用放心自动化api测试
@Test
public void Login() {
Response resp = given().
body("{\"phone_number\":\"2222222222\",\"\r\n" +
" + \" \"country_code\": \"+91\",\"\r\n" +
" + \" \"login_type\": 0}").
when().
contentType(ContentType.JSON).
post("http://url/api/v1/login");
System.out.println(resp.asString());
}
Run Code Online (Sandbox Code Playgroud)
Nab*_*ari 15
添加授权标头.
Response resp = given().header("Authorization", "Bearer "+token).body(...
Run Code Online (Sandbox Code Playgroud)
有关详细信息,请参阅此处.
| 归档时间: |
|
| 查看次数: |
21939 次 |
| 最近记录: |