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 have a Facebook app that posts pictures to users' feeds using the graph API. I want to find out how many other Facebook users view each picture that gets posted. I have tried using the insights API, but it only returns empty data. For example, suppose a post has the ID:

100003858263437_217258205079453

If I visit:

https://graph.facebook.com/100003858263437_217258205079453/insights?access_token=ACCESS_TOKEN

The returned data is empty:

{
   "data": [

   ],
   "paging": {
      "previous": "https://graph.facebook.com/100003858263437_217258205079453/insights?access_token=ACCESS_TOKEN&since=-86400&until=0",
      "next": "https://graph.facebook.com/100003858263437_217258205079453/insights?access_token=ACCESS_TOKEN&since=0&until=86400"
   }
}

It seems from the Insights documentation that getting insights on a particular post may not be possible. Anyone know how to get Insights for a post made by an application?

share|improve this question

1 Answer

Correct, there is no pulling insights for User accounts. You can only pull insights for pages, applications, and domains the user owns if you have the read_insights permission

share|improve this answer
Do you know if there is any other way to get the number of impressions/views of a photo that I post to a users account? – dirjud Mar 7 at 17:55
No, there is no other way. Facebook does not release insights for user accounts to anyone. – Tommy Crush Mar 7 at 19:04

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.