使用Graph API获取facebook状态的位置

时间:2014-04-17 13:19:21

标签: facebook facebook-graph-api facebook-fql

是否有可能获得facebook状态的经纬度?

我正在使用搜索API,目前/搜索?q = foo& type = post,但我得到的JSON没有关于该位置的任何信息。我应该使用其他API端点吗?或者可以用FQL完成吗?

谢谢!

1 个答案:

答案 0 :(得分:1)

可以使用FQL

完成
select latitude, longitude from place where page_id in
        (select place_id from status where uid = me())

如果您想要某个特定状态的位置

select latitude, longitude from place where page_id in
        (select place_id from status where status_id = XXXXXXX)

如果未设置状态位置,您将收到空的结果。