facebook - Accessing "location_post" data with FQL and "distance_meters" -
i'm trying post_ids stories published near geo point.
while reading through facebook fql documentation came across example: https://developers.facebook.com/docs/reference/fql/location_post/
select ... location_post latitude = ... , longitude = ... , distance_meters = ...
when try run query,
message": "(#602) distance_meters not member of location_post table."
am doing wrong?
thanks!
the fb documentation inaccurate here (again...). there's bug report this: https://developers.facebook.com/x/bugs/629578257122514/
you can use following query schema:
select author_uid, id location_post distance(latitude, longitude, '52.516412', '13.377681') < 1000
this give posts or friends sent within 1000m around brandenburger tor in berlin...
Comments
Post a Comment