Extracting Token

[Solved] Extracting Token | Solidity - Code Explorer | yomemimo.com
Question : extracting token

Answered by : obedient-ocelot-5tkogtygmlyl

We can use .extract then .jsonPath and lastly getString("token")
String myToken = given() .log().all() .contentType(ContentType.URLENC) .formParam("email","xxxxxxxxxxx") .formParam("password","xxxxxxx") .when() .post("/login") .then() .log().all() .statusCode(200) .body("token", is(notNullValue())) .contentType(ContentType.JSON) .body("token",is(not(emptyString()))) .extract() .jsonPath() .getString("token") ;

Source : | Last Update : Tue, 22 Dec 20

Answers related to extracting token

Code Explorer Popular Question For Solidity