JSON.NET JObject - how do I get value from this nested JSON structure JSON.NET JObject - how do I get value from this nested JSON structure json json

JSON.NET JObject - how do I get value from this nested JSON structure


SelectToken("data[0].user_id") doesn't work because there isn't an array in your JSON. You should use SelectToken("data.user_id") instead.

Fiddle: https://dotnetfiddle.net/K0X4ht