How do I fetch the facebook events of a particular location -


i fetch facebook events passing latitude or longitude or place, fql support no more, i've tried following query

search?q=*&type=events&center=37.76,-122.427&distance=1000 

but results syria, india, usa, hungary , all, why i'm not getting events location i've specified. there legal issues in fetching public events facebook, how many number of eevnns can fetch @ time??

there no way directly search events in specific area. center , distance parameters available places, can read in docs: https://developers.facebook.com/docs/graph-api/using-graph-api#search

more information:

about "how many events can fetch", api rate limits: https://developers.facebook.com/docs/graph-api/advanced/rate-limiting

api results have limit of 25 entries 1 api call. can set higher:

/search?type=event&q=test&limit=100 

legal issues depend on want data, impossible without knowing details app.


Comments