6

I want to query all events in an area (a specific location + reach as explained here is fine) and return event locations, no matter if via Graph Search or FQL. Problem: I only get a very small amount of events returned.

Searched rigorously, did not find exactly what I was looking for. Especially getting ALL events in an area seems to be a problem.

Community
  • 1
  • 1
  • Have you tried adding a `limit=x` parameter to your requests? – Lix Jun 01 '13 at 11:51
  • I guess it is duplicated: http://stackoverflow.com/questions/15608568/search-all-public-events-using-facebook-graph-search-api – Nami May 19 '14 at 10:04

1 Answers1

0

There is no proper way to retrieve "all" in this case. Facebook uses some kind of algorithm based on the limit and distance parameters and the density of locations/places/events in that area.

You can try to keep the distance low and limit beneath 1000, but it really depends on density, so for crowded areas you will get different results as for rural areas for example.

You can also try to create some kind of "GEO grid" of the area you are interested and move the center location by 1km every time.

lars.schwarz
  • 1,276
  • 1
  • 8
  • 12