I am trying to get all public events for a given location. Here is what I use now
SELECT+name,+pic_cover,start_time,+end_time,+location,+description,venue++FROM+event+WHERE+eid++in(SELECT+eid+FROM+event_member+WHERE+uid+IN+(SELECT+page_id+FROM+place+WHERE+distance(latitude,+longitude,+"40.1811",+"44.5136")+<+50000+limit+0,15000))+ORDER+BY+start_time+desc+limit+0,1500
But there are a huge number of events with a location that did not return with this FQL query.
Is there a chance to get all the events for a given location, or can it be around the city?
I use Python, but if you have sample code in any language, write it.
source
share