Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
是否可以搜索并获取给定地点(纬度/经度)的用户签到或朋友签到?
您可以使用 FQL 和 location_post 表来找到它。
SELECT id, page_id FROM location_post WHERE distance(latitude, longitude, '37.86564', '-122.25061') < 10000
...应该在纬度/经度附近显示用户和朋友签到。
查看location_post 文档