放心找不到文件错误

时间:2018-01-31 09:10:01

标签: rest-assured

当我在标题中使用授权时,通过低音令牌变量给予放心"找不到文件"错误。如果在标题中对令牌进行硬编码,那么它就能成功运行。任何人都可以帮助我解决可能存在的问题。以下是我的代码,

public static void getIndentId() throws IOException {
if(indentId == null){
        Payloads pal = new Payloads();
        RestAssured.baseURI = CommonFunctions.getSitApiGatewayEndPoint();
        String sessionKey = GbPortalLogin.getSessionKey();
        String token = "Token "+sessionKey;
        System.out.println(token);
        Response res = given().
                header("Content-Type","application/json").
                header("Authorization",token).
                body(pal.createIndentPayload()).
                when().post(Resources.createNbIndent).
                then().extract().response();
        String s = res.asString();
        System.out.println(s);
        /*System.out.println(res.getBody().toString());
        JsonPath js = CommonFunctions.rawToJson(res);
        indentId = js.get("id").toString();*/
    }

0 个答案:

没有答案