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?
|
|
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 Once you get these results you could then further filter out these by timezone and location. |
|||
|
|
|
Facebook search documentation implies that you can do a search for "objects" based on a location. For example you should be able to do I'm guessing this feature is broken. |
|||
|
|
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:
With FQL there is the distance function:
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 |
|||
|
|
|
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:
|
|||
|
|