Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I've been trying to figure out how to do this, and was thinking it wasn't possible, then found this website: http://elmcity.info/fb_events

You can search by city there and I have no idea how they do it? The normal graph API's don't allow searching for events by location as far as I can see. Any advice/tips/info would be great!

share|improve this question

1 Answer

up vote 8 down vote accepted

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.

share|improve this answer
Thank you. I figured out the first part after some research but are you sure you can find events by location? You have the * wildcard in your search, but that doesn't seem to work for events? – user1212314 Jun 25 '12 at 16:11
Sorry. Those queries just return places. You can't directly query events by location using the Graph API. You can do it with FQL: SELECT eid FROM event_member WHERE uid IN (SELECT page_id FROM place WHERE distance(latitude, longitude, "37.76", "-122.427") < 1000) – cpilko Jun 25 '12 at 17:09
Thanks, I will check this out later. – user1212314 Jun 25 '12 at 20:40
cpilko, could you explain the FQL query in detail? Specifically, I'm wondering how the "uid" attribute works - the doc says it's "The user ID of the user for the event being queried." – thomers Nov 3 '12 at 12:22
The uid in the event_member table is mis-named. It's a legacy field from when only users could attend events. Now pages (and places) can also be members of an event. The inner query finds the ids of all places within 1000 meters of Mission Dolores Park in San Francisco, then feeds those ids into the outer query, which finds all events at those places. – cpilko Nov 3 '12 at 15:04
show 1 more comment

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.