Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Hi I am currently working on Search feature of Facebook Graph API using C# SDK.

Since C# SDK source does't provide any example for this, I found below on web, which works well.

Dictionary<string, object> searchParams = new Dictionary<string, object>();
searchParams.Add("type", "post");
searchParams.Add("q", "olympic");
FacebookClient fbClient = new FacebookClient(token);
var rslt = fbClient.Get("/search", searchParams);

I get the rslt and I can see string with many differnt parameters in double quotes and lots of brackets and parenthesis.

Does anyone have an idea if there is proper way of displaying this result ? I am not guessing manual parsing, but putting into some method in Facebook library or viewing directly using some sort of conversion media..

share|improve this question

1 Answer

up vote 0 down vote accepted

I did not want to answer my own question, however for the sake of whoever having similar issues.

I found two related posts, realizing what I am dealing with is JSON format.

They encourage to use JObject, JSON.NET.

Parsing Facebook Open Graph API JSON Response in C#

How to parse json in C#?

share|improve this answer

Your Answer

 
discard

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

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