This is the response.
{
"code": 200,
"data": {
"createdAt": "2019-12-09 15:21:07.0",
"id": 3,
"title": "{\"v\":\"1\"}",
"token": "INACTIVE"
},
"message": "SUCCESS"
}
I need value of v which is 1. I'm getting this
{"v":"1"}
through
JSONObject r2 = new JSONObject(operation);
String title = r2.getString("title");
System.out.println(title);
How do I get the value of v after this? It would be great if I could get any suggestions.