我开发了一个窗口应用程序,它可以获取我所有的 Facebook 个人资料墙帖子并将其显示在列表框中。我从http://www.youtube.com/watch?v=5lC7Q2Z2yik下载了代码,但我的 Facebook 墙贴仍未显示。我可以通过我的应用程序在我的墙上发帖,我的头像和朋友都成功显示。有什么我忘记更改/添加的吗?任何帮助将不胜感激!
private void getMyWallData()
{
apiService.AccessToken = myToken.Default.token;
JSONObject myWallFeed = apiService.Get("/me/feed");
var wallData = myWallFeed.Dictionary["data"];
List<JSONObject> myFeeds = wallData.Array.ToList<JSONObject>();
foreach (var p in myFeeds)
{
try
{
if (p.Dictionary.ContainsKey("message"))
{
Console.WriteLine(p.Dictionary["message"].String + " " + p.Dictionary["created_time"].String);
listBoxMyWall.Items.Add(p.Dictionary["message"].String);
listBoxMyWall.Items.Add("");
}
if (p.Dictionary.ContainsKey("comments"))
{
listBoxMyWall.Items.Add(" " + p.Dictionary["comments"].Dictionary["data"].Array[0].Dictionary["from"].Dictionary["name"].String + " " + p.Dictionary["comments"].Dictionary["data"].Array[0].Dictionary["message"].String);
listBoxMyWall.Items.Add("");
}
}
catch (KeyNotFoundException ex)
{
MessageBox.Show(ex.Message);
}
}
}