如何通过curl - 用户通过放心

时间:2018-02-22 17:10:20

标签: rest-assured

以下是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)

1 个答案:

答案 0 :(得分:0)

以下是解决方案 注意,我之前没有传递数据

 given().relaxedHTTPSValidation().
       auth().basic("name", "password").
       param("grant_type","client_credentials").
 when().
       post("https://test_url/oauth/token").
 then().
       statusCode(200);