phyton access data via API code example
Example 1: api in python
import requests
import json
r = requests.get("URL")
j=r.json()
print(j)
Example 2: how to extract data api
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")
;