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);
}
}
}