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.

Json.NET is a popular high-performance JSON framework for .NET

learn more… | top users | synonyms

0
votes
1answer
57 views

Facebook Social Plugin Comments JSON.net deserializing not working

I have the following code inside of a WebClient StringCompleted. var json = JsonConvert.DeserializeObject<dynamic>(e.Result); the URL is this: ...
2
votes
2answers
228 views

converting graph api for xml

I'm having trouble converting a string of json facebook graph api, I used the facebook C# and json.Net. But at conversion time it returns this error: Name can not begin with the '0 'character, ...
1
vote
1answer
184 views

Reading the results of me/accounts

I'm using the Facebook API for .NET, and need the access token for a page I'm the admin for. I'm making the following call: FacebookClient client = new FacebookClient(tokens["access_token"]); ...
2
votes
2answers
1k views

Deserialization of a Facebook JSON string?

I am not able to get my head around extracting the work_history, affiliations and current_loc of the facebook user from the JSON string that is generated after i run my fql query I have made this ...
1
vote
2answers
2k views

Deserialize Json to Class that implements Ienumerable in Asp.net

I've below function which fetches facebook data and return it as string. public static string GetUserNewsFeed(string strAccessToken) { Dictionary<string, object> PostDetail = new ...
14
votes
2answers
5k views

Deserializing JSON when sometimes array and sometimes object

I'm having a bit of trouble deserializing data returned from Facebook using the JSON.NET libraries. The JSON returned from just a simple wall post looks like: { "attachment":{"description":""}, ...
2
votes
1answer
3k views

JsonObject to Model Facebook SDK

I'm have to use the facebook c# sdk for a new poject in .net 3.5 , I'm aware that the latest version has examples for 4 - but it's also compiled against the 3.5 so works completely. Anyway, and ...
0
votes
1answer
529 views

Create JSOnObject using JSon.net manually

I'm using Facebook C# SDK. In general it works fine but for a unit test I have to create a JSONObject on my own. First I tried with "JSONObject.Add" but I did not find out how to write subnodes then. ...