gpt4 book ai didi

java - 如何使用 Rest Assured 和 POST 方法获取 REST API 端点的访问 token ,目前我收到 404 错误?

转载 作者:行者123 更新时间:2023-12-02 11:54:30 28 4
gpt4 key购买 nike

我正在尝试运行 POST 方法以使用 REST Assured Code 获取访问 token 。但它返回 404 错误。我的代码如下。POSTMAN 配置如下,尝试使用 Rest Assured 进行复制

Method : POST

Authorization tab:
Type : Basic Auth
UserName : ABCD
Passsowrd : Test@1234

Body Tab :
Selecting "application/x-www-form-urlencode" Radio Button
Key : grant_type Value : Client_Credentials
Key : Scope value : ABCDAPI


given().auth().basic("Username Here","Password type here")
.header("Authorization", "Basic T1VUUkVBQ0hfQVBJX0NMSUVOVDpIWmRwREwydkR5UE5iQmtvWEdxSkFpK1Qxa08yWSszNndxQXhoYTVXUWhZPQ==n")
.header("Content-Type","application/x-www-form-urlencoded")
.contentType("application/x-www-form-urlencoded")
.body("[{\"grant_type\":\"client_credentials\"}]")
.body("[{\"scope\":\"ABCDpi\"}]").when()
.post("https://ABCD.KLM.id.XYZ-Cloud.net/oauth2/access_token?realm=PQR")
.then().contentType("").statusCode(200);

我还附上了 Postman 工作时的屏幕截图 enter image description here

最佳答案

在尝试下面的代码之前,给自己一些时间看看 here .

此外,application/x-www-form-urlencoded 将其 POST 变量作为键值对存储在正文中。

given().auth().basic(username, password)
.header("Content-Type","application/x-www-form-urlencoded")
.formParam("grant_type", "client_credentials")
.formParam("scope", "ABCDpi")
.post("https://ABCD.KLM.id.XYZ-Cloud.net/oauth2/access_token?realm=PQR")
.then().contentType("").statusCode(200);

关于java - 如何使用 Rest Assured 和 POST 方法获取 REST API 端点的访问 token ,目前我收到 404 错误?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47695617/

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