How can i grab all tokens in a List<String>
?
Here is the json string :
{
"error": null,
"jsonrpc": "2.0",
"id": 0,
"result": {
"paginator": null,
"cat_count": {},
"last_post_date": 386623075949839,
"post_list": [
{
"hc": false,
"p2": 4,
"token": "LnARJZCmt"
},
{
"hc": false,
"p2": 4,
"token": "BuD2oIs3N"
},
{
"p2": 4,
"token": "89NaBsAha",
"hc": false,
}
],
"error": 0
}
}
I am using Newtonsoft.Json
Here is what i tried :
var obj = JObject.Parse(json);
string next_search_val = (string)obj["result"]["last_post_date"];
var tokens = obj["result"]["post_list"]["token"]; > Fix this line for me > I have error here