Facebook Graph API:如何检索自己的帖子?

时间:2011-02-07 10:54:04

标签: c# facebook-graph-api

我正在尝试编写一个程序,从Facebook检索我自己的帖子和评论 - 我能够登录并检索有关“我”的信息,但我不知道如何获得我写的帖子。我发现图形API文档非常混乱。

我正在使用c#/ WPF程序集,它允许我使用以下方法检索有关我的信息:

  fbApp.GetAsync("me", (val) =>
  {
    var result = (IDictionary<string, object>)val.Result;
    Dispatcher.Invoke(System.Windows.Threading.DispatcherPriority.Normal,
                        new Action(delegate() { InfoBox.ItemsSource = result; }));
  });

使用哪个图API我可以检索自己的帖子和/或评论?

1 个答案:

答案 0 :(得分:0)

您只需通过GET请求检索您的Feed

http://graph.facebook.com/me/feed

征求意见

http://graph.facebook.com/[post-id]/comments