Json structure is returned empty, without property names and values when using Newtonsoft JsonConvert in FB C# client
问题 I'm working on asp.net mvc 4 application which uses Facebook C# SDK (6.0.10.0) and Newtonsoft.Json (4.5.0.0). Request with FacebookClient returns expando object: [Authorize] public ActionResult GetFbData(string path = "me"){ var expando = this.fb.Get(path); return Json(expando); } Returned Json looks like: [{"Key":"id","Value":"100000xxxxxxxx"},{"Key":"name","Value":"John Doe"} ... ] I want to return it in format {id:100000xxxxxxx, name:"John Doe", ... } so I added this to the code which