以下是cURL
curl --user name:passwoed -k -X POST \
https://test_url/oauth/token \
-H 'cache-control: no-cache' \
-H 'content-type: application/x-www-form-urlencoded' \
-d grant_type=client_credentials
我试过下面但是得到400
given().relaxedHTTPSValidation().
auth().basic("name", "password").
when().
post("https://test_url/oauth/token").
then().
statusCode(200)
答案 0 :(得分:0)
以下是解决方案 注意,我之前没有传递数据
given().relaxedHTTPSValidation().
auth().basic("name", "password").
param("grant_type","client_credentials").
when().
post("https://test_url/oauth/token").
then().
statusCode(200);