我正在尝试运行 POST 方法以使用 REST Assured Code 获取访问令牌。但它返回 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 的屏幕截图,在此处输入图像描述