gpt4 book ai didi

java - 如何在放心的 header 中传递授权 token ?

转载 作者:塔克拉玛干 更新时间:2023-11-03 03:38:07 26 4
gpt4 key购买 nike

尝试使用 Rest assured 自动化 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());
}

最佳答案

添加授权 header 。

Response resp = given().header("Authorization", "Bearer "+token).body(...

有关详细信息,请参阅 here.

关于java - 如何在放心的 header 中传递授权 token ?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46264650/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com