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.

I am trying to create an application that will get a user's "likes per month" on Facebook. I've never worked with the Facebook API and I can't seem to find a good tutorial on how to do what I'm trying to do.

For example, this page has the URL that will allow me to access the JSON data for the user's wall. That's cool and all, but how do I get that information programmatically and in the application? I have the basic application set up on heroku, and I'll be working with that.

share|improve this question

1 Answer

Call /me/posts, go through the paginated data and set conditionals to store likes based on the created_time.

Though all of this can get skewed if someone went back through old posts and started liking them. So it all depends on how you want to define likes per month

http://developers.facebook.com/docs/reference/api/user/#posts

You could start by using a simple library like facepy

from facepy import GraphAPI
graph = GraphAPI('your_access_token_goes_here')
pages = graph.get("me/posts", page=True)
for page in pages:
    // do something with page["data"] like drop the likes in a month array
share|improve this answer

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.