How do i print out a selected field from my json object without having to create classes for it, at the moment it prints out the whole json object but i just want to print out selected fields for example something like Console.WriteLine(response.venues.name);

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using Newtonsoft.Json;
using Newtonsoft.Json.Linq;

namespace FourSquareTest
{
class Program
{
    static void Main(string[] args)
    {
        using (var webClient = new System.Net.WebClient())
        {
            var json = webClient.DownloadString("https://api.foursquare.com/v2/venues/search?ll=40.7,-74&query=mcdonalds&client_id=XXXXXXX&client_secret=XXXXXXXX&v=20120101");
            // Now parse with JSON.Net

            JObject parsed = JObject.Parse(json);
            foreach (var pair in parsed)
            {
                Console.WriteLine("{0}: {1}", pair.Key, pair.Value);

            }

        }


    }
}
}
link|improve this question

feedback

1 Answer

up vote 1 down vote accepted

Try

 JObject parsed = JObject.Parse(json);
 JToken response = parsed["response"];
 JArray venues = (JArray)response["venues"];
 JValue names = (JValue)venues[1]["name"];

But I don't have the library to test, so that's just based on the documentation.

link|improve this answer
oops i forgot to add "using Newtonsoft.Json.Linq.JObject;" but now it gets an error Identifier Expected – Dorf Feb 2 at 5:11
'Newtonsoft.Json.Linq.JObject' does not contain a definition for 'Items' and no extension method 'Items' accepting a first argument of type 'Newtonsoft.Json.Linq.JObject' could be found (are you missing a using directive or an assembly reference?) – Dorf Feb 2 at 5:18
Sorry, it was Item not Items, fixed. I'm just referencing james.newtonking.com/projects/json/help/html/… – Corylulu Feb 2 at 5:23
i am still getting the same error above but 'Item' instead of 'Items' – Dorf Feb 2 at 5:36
What version are you running? – Corylulu Feb 2 at 5:48
show 3 more comments
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.