我一直在阅读一些帖子,但我需要帮助。
我正在尝试解析像这样的json String(text_)...
{
"pagination": {
"next_url": "https://api.instagram.com/....",
"next_max_id": "000000000000_000000"
},
"meta": {
"code": 200
},
"data": [
{
"attribution": null,
"tags": [
"socialmedia",
"linkedin"
],
"type": "image",
"location": {
"latitude": 0.000000,
"longitude": 0.0000000 },
-----------
我使用json.net
Imports Newtonsoft.Json.Linq
代码是......
text_= webClient_IGR.DownloadString("https://api.instagram.com/v1/users/" & id_igr & "/media/recent?access_token=" & IGR_KEY)
Dim json As JObject = JObject.Parse(text_)
MsgBox(json.SelectToken("pagination").SelectToken("next_url"))
我没有问题但是 如何从标签或位置获取值?
对不起我的英语。
拜托,帮助我!