我一直在寻找一种方法来从图形API中为朋友提取最近的生活事件,但我遇到了阻止地点的事件。
我知道您可以向朋友查询他们的位置。但是,是否有可能找到以前的位置历史记录(或者只是一般的历史记录,如果有人在工作中获得晋升以便他们改变角色?)。
请原谅我手机上发布的代码不足。
我对地点的看法是: - > API(?/ ME /朋友字段=名称,地点);
适用于当前位置。
任何提示都会很棒。感谢。
答案 0 :(得分:2)
所以事实证明,最好的方法是对“流”表使用FQL。从这里我们可以添加WHERE子句来完成我所追求的目标。最难的部分是Facebook在特定领域缺乏文档。 “类型”。
https://developers.facebook.com/docs/reference/api/user/ https://developers.facebook.com/docs/reference/fql/stream/ 需要的权限:“read_stream”
执行初始查询“SELECT post_id,actor_id,target_id,message FROM stream WHERE filter_key in(SELECT filter_key FROM stream_filter WHERE uid = me()AND type ='newsfeed')AND is_hidden = 0”在您的新闻流中为您提供广泛的更新列表。
因此,通过更改测试帐户中的一些内容,我能够找到与用户帐户上的活动更改相匹配的“类型”。
工作和教育分组。
所以说如果我们想要具体并寻找一个活动,我们可以将“类型”更改为等于上面提到的id。
$query = "SELECT post_id, actor_id, target_id, message, created_time, description, description_tags, type, place FROM stream WHERE type = '62' filter_key in (SELECT filter_key FROM stream_filter WHERE uid=me())";
$response = $this->facebook->api('/fql?q=' . urlencode($query));
响应将如下所示:
'data' => array(
(int) 0 => array(
'post_id' => '100035395_38758242', //I've changed this post id to be random
'actor_id' => (int) 4242, //I've changed this actor_id to be random
'target_id' => null,
'message' => '',
'created_time' => (int) 1347601178,
'description' => 'Joe Smith updated his work and education on his timeline.',
'description_tags' => array(
(int) 0 => array(
(int) 0 => array(
'id' => (int) 4242, //I've changed this id to be random
'name' => 'Joe Smith',
'offset' => (int) 0,
'length' => (int) 8,
'type' => 'user'
)
)
),
'type' => (int) 305, //<--- Note the type id
'place' => null
),
);
现在我们需要注意教育和工作历史可以结合起来,也可能是其他类型。我们可以从这里直接查询“post_id”以获取更多与之相关的信息。
$post = $this->facebook->api('/100035395_38758242');
这可能是这样的反应:
array(
'id' => '100035395_38758242',
'from' => array(
'name' => 'Joe Smith',
'id' => '4242'
),
'story' => 'Joe Smith added Harvid University of America to his timeline.',
'story_tags' => array(
(int) 0 => array(
(int) 0 => array(
'id' => '4242',
'name' => 'Joe Smith',
'offset' => (int) 0,
'length' => (int) 8,
'type' => 'user'
)
)
),
'actions' => array(
(int) 0 => array(
'name' => 'Comment',
'link' => 'http://www.facebook.com/3535/posts/345345' //Changed
),
(int) 1 => array(
'name' => 'Like',
'link' => 'http://www.facebook.com/345345/posts/34534' //Changed
)
),
'type' => 'link',
'created_time' => '2012-09-14T05:39:38+0000',
'updated_time' => '2012-09-14T05:39:38+0000',
'comments' => array(
'count' => (int) 0
)
)
替代方案可以是直接查询用户ID并提取与“类型”相关的字段。即“工作”或“教育”。
$friend = $this->facebook->api('/242?fields=work,name,education,id');
注意:如果您需要X周或几个月之前的数据,则应在查询中使用“created_time”,否则您将被限制为:每次查询30天或50个帖子。