Niko Pyrkosch
Niko Pyrkosch

Reputation: 21

How does Facebook API Rate Limit work for App Access Token?

I'm working on a project where an app displays events in the near surrounding based on the personal preferences of the user. We plan on getting the events from the Facebook Graph API using this approach. Due to Facebook's API changes it is much more complicated to search for events in a particular city. Therefore it requires much more API calls than before and i'm worried about FB rate limit.

We want to get the information about events by calling the Graph API with our app access token from our server and then store the data temporarily in our own database. So every time a user searches for events in our app, the client gets the information from our database. Moreover the user can (but don't has to) log-in with his Facebook account in order to provide us more information about him. We want to use the user's access token to call the API in order to get the user's likes.

I've read the FB documentation about the rate limits and some posts here on the site. Apparently FB calculates the number of calls based on the active users (200 calls per user every hour). It says that

"These limits apply to calls made using any access token other than a page access token"

ergo they also apply to the app access token. Additionally in the FB policy it says something about 100M calls per day.

So my questions are:

  1. How does the rate limit work on a per user basis if I am using my App Access Token?
  2. To what token does the "100M" number belong? Is it an overall number for all tokens used by the app?

A similiar question has been posted here some time ago but didn't receive any answers. I hope maybe someone got new information since then. An answer to these questions is crucial to our project, so bear with me if you've read that question before.

Thanks in advance!

Upvotes: 2

Views: 887

Answers (1)

Chandan Sharma
Chandan Sharma

Reputation: 2519

Please check this Facebook Rate Limits

enter image description here

Upvotes: 1

Related Questions