Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Can I fetch all Facebook events in a specific city? All I need is event IDs nothing else. It should be all events (public), not only someone's events. Will Facebook let us fetch that info?

share|improve this question
the website allevents.in has exactly what you are looking for. Has anyone any idea how they managed to do this? – Dieter Jan 29 at 12:30
It works exactly the same way as elmcity. See here: stackoverflow.com/questions/11181480/… – cpilko Feb 2 at 19:15

4 Answers

You cannot query the event table without specifying an indexable column, i.e. an actual event Id. You could use the search functionality and query for event types, e.g.

http://graph.facebook.com/search?q=Dublin&type=event
http://graph.facebook.com/search?q=London&type=event

Once you get these results you could then further filter out these by timezone and location.

share|improve this answer

Facebook search documentation implies that you can do a search for "objects" based on a location. For example you should be able to do https://graph.facebook.com/search?type=location&place=45386717890&distance=1000 to get a list of objects (including events) that are within 1000 (miles? km? they don't bother saying) of New York City (object #45386717890). However, I only ever get a blank result regardless of what I search near.

I'm guessing this feature is broken.

share|improve this answer
I just got this error while experimenting: "You are requesting too many tiles! Is your box too thin?" XD – Tim Tisdall Feb 1 at 19:00

Elmcity does a simple search for a keyword in the event title. Try "Lancaster" for example. You'll get events in the UK, PA, NY OH and CA. You can also search for a non-location based word in the title like "picnic" and the script returns events.

However, you can query for events by location. With the graph API you can use the "Center" parameter in a search query:

https://graph.facebook.com/search?q=*&type=place&center=37.76,-122.427&distance=1000

With FQL there is the distance function:

SELECT page_id FROM place WHERE 
distance(latitude, longitude, "37.76", "-122.427") < 1000

With both of these the maximum distance is 50000 and is expressed in meters. There are limits to the number of records that are returned by each of these queries.

Neither one of these methods is well documented. I've personally found FQL to return more predictable results than the Graph API for these queries.


the source come from this post: Source Post

share|improve this answer

While you can search for places or events near a place using the Facebook Graph API, I find this unreliable. Facebook does not expose standard categories to the API that allow you to filter on these, and there is no way that I am aware of to effectively search for venues that host events near an area and order them by relevance to what you are really looking for.

In practice, that means you can search for venues near a point. The Facebook API returns every coffee house that has an open mic night, but not an arena that hosts concerts.

Were I going to do this, I'd use this workflow:

  • Query the Factual Places API to find the target venues for your search in the city of interest.
  • Pass the result of that through the Factual Crosswalk API to get the Facebook IDs of those places, and concatenate them into an array.
  • Use that array to query the Facebook Graph API for events at those places.
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.