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.

Was wondering if anyone knows how to get the historical data for any Facebook Page.

For example, number of fans for RedBull fan page on a given day in the past or for a given period that ends today so that I can show fan development of any page over a given period.

I tried it with the graph API and FQL (insights) but no luck.

https://graph.facebook.com/{USERNAME}/insights?fields=likes&period('week')&end_time_date('2011-06-26') --> empty result

Pulling the data via FQL also returns no results, plus it seems without a read_insights permission nothing is possible for page data

I'd need this to be available with only a generic user access token. This data is publicly available anyway. Result should be somewhat like this: http://www.socialbakers.com/facebook-pages/australia/

share|improve this question

1 Answer

up vote 1 down vote accepted

Without insight permission I recommend that you write something to perform a nightly query on the page graph and record the stats you need. If the page is public most of the information shown on that site is available.

You could also scrape info from http://pagedata.appdata.com if the page has already been listed...

share|improve this answer
I've considered that for the future but how could I access that data from the past? – G.W Feb 23 '12 at 2:21
You need insights access. Do you know the people who own the pages? – Nix Feb 23 '12 at 2:22
No, I ask for the page username in the first step and send that to file_get_contents, which pulls the data. – G.W Feb 23 '12 at 2:39
Pretty much all you can do is pay for it, scrape it, or collect it yourself. You could setup a GAE project to do it in less than 20 mins. – Nix Feb 23 '12 at 2:49
Can you please explain"GAE project"? Cheers. – G.W Feb 23 '12 at 3:01
show 2 more comments

protected by Will Jan 4 at 15:04

This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.

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