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.

So my goal was seemingly simple get the number of wall posts for the day. I was using the graph API insights/page_wall_posts until I realized the counts were not correct. Is there a better stat to use? I did see in the FQL documentation that page_wall_post is depreciated but it failed to say if it was replaced with something else.

My questions are:

  1. How can I get the count of all wall posts for a day?
  2. Similarly how can I get total comments on the wall for the day?

I have code that parses the results, but when I was testing yesterday using the graph explorer I saw that the data coming back was no where close to the actually activity on Facebook.

share|improve this question
just a note - the insights is not "live data" - you wont be able to see data that was added "today". If in not ,mistaken I believe there is a 48hour delay (maybe even more). – Lix Jan 15 '12 at 16:03

2 Answers

I've seen some inconsistencies as well between data available to the Graph and what is actually seen via the Facebook UI.

However, if you can live with relying on the results from the Graph API, you do have some ways of getting the information you're after. If it involved pagination of results, you may be disappointed in the results.

You can run FQL thru the graph API (and even from the Graph API Explorer). Try

fql?q=SELECT post_id, comments, message FROM stream WHERE source_id=me() AND created_time > 1326064184 AND created_time < 1326634407

From this query you get the stream items for the user as well as the comments object for each of those posts.

If you are looking to pull comments counts for a time period on the user's posts, then you can use: fql?q=SELECT object_id, text, time FROM comment WHERE post_id IN (SELECT post_id FROM stream WHERE source_id=me()) AND time > 1326064184 AND time < 1326634407

share|improve this answer
Joy... doesn't this defeat the purpose of using the graph rest api ? – Nix Jan 16 '12 at 16:18
The API is not defeated. It's just the rules we've gotta play while we dig around in Facebook's sandbox. – DMCS Jan 16 '12 at 16:26
Did this answer help you to find your solution to your question, if so, please accept this answer. See meta.stackoverflow.com/questions/5234/… for how to mark answers. Thank you! – DMCS Feb 4 '12 at 23:15
I attempted to test your solution(which did not answer my question because I am talking about posts to a PAGE) and it was not doing as expected but once I do get a valid solution using fql if your answer helped I will make sure I give you credit. Thanks for the tutorial on answer questions, not quite sure I knew how that worked. – Nix 19 mins ago – Nix Feb 5 '12 at 18:09
The stream contains both user and page posts. Using a page access token will give you the correct source_id=me(). Sometimes an answer doesn't have to be a direct solution, but rather aid the questioner in the right direction. Happy coding! – DMCS Feb 6 '12 at 3:23
up vote 0 down vote accepted

So the answer to my question is the next best way to get this data is by using:

insights/page_stories_by_story_type . It will return something like:

"data": [
{
  "id": "<THE ID>/insights/page_stories_by_story_type/day", 
  "name": "page_stories_by_story_type", 
  "period": "day", 
  "values": [
    {
      "value": {
        "fan": 10, 
        "page post": 8, 
        "user post": 3, 
        "checkin": 1
      }, 
      "end_time": "2012-02-05T08:00:00+0000"
    }, 

The page_post value will include post+comments. Which is the best I could find using insight data.

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.