我正在尝试获取在某个地理位置附近发布的故事的所有post_ids。
在阅读Facebook FQL文档时,我遇到了这个例子: https://developers.facebook.com/docs/reference/fql/location_post/
SELECT ... FROM location_post WHERE latitude = ... AND longitude = ... AND distance_meters = ...
当我真正尝试运行查询时,我得到了
message": "(#602) distance_meters is not a member of the location_post table."
我做错了吗?
谢谢!
答案 0 :(得分:0)
这里的FB文档不准确(再次......)。实际上有一个错误报告:https://developers.facebook.com/x/bugs/629578257122514/
您可以使用以下查询架构:
select author_uid, id from location_post where distance(latitude, longitude, '52.516412', '13.377681') < 1000
这将为您提供您在柏林Brandenburger Tor周围1000米范围内发送的所有帖子......