Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Facebook Graph API: Get Events by Venue

Is there a way to query all the events for a specific venue? I noticed that there is no such entity Venue - it is a structure inside the event object.

Assuming there isn't, what do you think about the following solution?

  1. Query all the events in the proximity of the Venue (I got the venue coordinates)
  2. Filter all events that do not match the Venue ID.

Thanks!

like image 975
user1782427 Avatar asked Dec 01 '12 22:12

user1782427


People also ask

What data can I get from Facebook Graph API?

The Graph API is the primary way to get data into and out of the Facebook platform. It's an HTTP-based API that apps can use to programmatically query data, post new stories, manage ads, upload photos, and perform a wide variety of other tasks.

How do I get Facebook Page Insights on graph API?

You can access Page Insights by typing /insights after the name of your page in the URL field. This command will retrieve all of the Insights associated with your Page. Type "/insights" after your company name. Click the Submit button.

Is Facebook Graph API a REST API?

Yes, it is a REST API as well. Show activity on this post. Yes, there have been 3 Facebook API's to date: Legacy REST.


1 Answers

Unfortunately you are right. The only way forward being to filter all the events by venue.

like image 90
JHAWN Avatar answered Sep 21 '22 12:09

JHAWN