代码之家  ›  专栏  ›  技术社区  ›  phunehehe

使用facebook API检索新闻提要

  •  0
  • phunehehe  · 技术社区  · 14 年前

    http://www.facebook.com/home.php ). 我认为这应该是非常容易的事情。我错过了什么?
    我更喜欢使用FQL的答案,但其他API方法也可以,因为我认为我可以在它们之间进行转换。

    3 回复  |  直到 14 年前
        1
  •  2
  •   Dhawal    12 年前

    https://graph.facebook.com/me/home

    注意:/me/home检索新闻提要的过时视图。这是目前已知的一个问题,我们(Facebook)近期没有任何计划让它们恢复平衡。

        2
  •  1
  •   phunehehe    14 年前

    我找到了!方法是在流中查找来自您朋友的用户的帖子。这有点烦人,因为仅仅完成一些非常基本的任务就需要加倍的努力。在Objective-C中使用 FBConnect 代码如下所示:

    NSString *connections = [NSString stringWithFormat:@"select target_id from connection where source_id == %lld", _uid];
    NSString *fql = [NSString stringWithFormat:@"select message from stream where source_id in (%@)", connections];
    NSDictionary* params = [NSDictionary dictionaryWithObject:fql forKey:@"query"];
    [[FBRequest requestWithDelegate:self] call:@"facebook.fql.query" params:params];