0
トークンを取得するにはList<String>
に?ここ
は、JSON文字列です:C#Newtonsoft.Jsonで使用するオブジェクトのjson配列を抽出します。
{
"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
}
}
私はここでNewtonsoft.Json
を使用しています私が試したものです:
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
$ ..>にそれが何を意味するのですか? – MoonLight
@MoonLight [JSONとJSONのクエリ](https://www.newtonsoft.com/json/help/html/QueryJsonSelectTokenJsonPath.htm) –
感謝しています。 – MoonLight