Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Im trying to deserialize a facebook friends graph api call into a list of objects, the json looks like:

{"data":[{"id":"518523721","name":"ftyft"},
         {"id":"527032438","name":"ftyftyf"},
         {"id":"527572047","name":"ftgft"},
         {"id":"531141884","name":"ftftft"},
         {"id":"532652067","name"... 

List<EFacebook> facebooks = 
  new JavaScriptSerializer().Deserialize<List<EFacebook>>(result);

Its not working because the primitive object is invalid. How can i solve it?

share|improve this question
write a custom deserializer specifically to cater to such json ... – ashutosh raina Oct 25 '11 at 20:03
or you can use an Dictionary<string,string>,check out: stackoverflow.com/questions/7699972/… – Kakashi Oct 25 '11 at 20:30
hey, thx, good idea! – user989818 Oct 25 '11 at 22:42

3 Answers

up vote 30 down vote accepted

You need to create a structure like this:

public class MyFacebookClass
{

    public List<CustomObject> data {get;set;}
}

public class CustomObject 
{

    public string id {get;set;}
    public string name {get;set;}
}

Then you should be able to do:

MyFacebookClass facebookFriends = new JavaScriptSerializer().Deserialize<MyFacebookClass>(result);

Names of my classes are just an example. You should use proper names.

Adding sample test:

string json=
    @"{""data"":[{""id"":""518523721"",""name"":""ftyft""}, {""id"":""527032438"",""name"":""ftyftyf""}, {""id"":""527572047"",""name"":""ftgft""}, {""id"":""531141884"",""name"":""ftftft""}]}";


MyFacebookClass facebookFriends = new System.Web.Script.Serialization.JavaScriptSerializer().Deserialize<MyFacebookClass>(json);

foreach(var item in facebookFriends.data)
{
   Console.WriteLine("id: {0}, name: {1}",item.id,item.name);
}

Produces:

id: 518523721, name: ftyft
id: 527032438, name: ftyftyf
id: 527572047, name: ftgft
id: 531141884, name: ftftft
share|improve this answer
Yeh, its what I dont want to do, create a new object to hold the childs. I think Im gonna substring the json taking out the primitive object. Thank you. – user989818 Oct 25 '11 at 20:12
@Kevin Holditch thanks for the correction. I missed one important bit :) – Icarus Oct 25 '11 at 20:14
result.Substring(8, result.Length - 9) do the job. Ugly, but... – user989818 Oct 25 '11 at 20:55

I agree with Icarus (would have commented if I could), but instead of using a CustomObject class, I would use a Dictionary (in case facebook adds something).

private class MyFacebookClass
{
   public IList<IDictionary<string, string>> data { get; set; }
}

or

private class MyFacebookClass
{
   public IList<IDictionary<string, object>> data { get; set; }
}
share|improve this answer

very easily we can parse json with the help of dictionary and JavaScriptSerializer. here is the sample code by which i parse json from ashx file.

            var jss = new JavaScriptSerializer();
            string json = new StreamReader(context.Request.InputStream).ReadToEnd();
            Dictionary<string, string> sData = jss.Deserialize<Dictionary<string, string>>(json);
            string _Name = sData["Name"].ToString();
            string _Subject = sData["Subject"].ToString();
            string _Email = sData["Email"].ToString();
            string _Details = sData["Details"].ToString();
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.