Part of the Oct. 2, 2013 Breaking Changes is:
“/POST_ID/likes update: Apps will be able to retrieve all likes on a post (rather than the first 4 as it is today) through paging. As a result of the functionality update, the like count will be moved to the summary field.”
That works for your photo as well, https://developers.facebook.com/tools/explorer?method=GET&path=10151848827816729%3Ffields%3Dlikes.limit(1).summary(1) gives you
"summary": {
"total_count": 13610
}
as part of the likes
structure in the return data. (limit(1)
because you are only interested in the overall likes count, so requesting more individual likes would just waste bandwidth – 1
is the minimal amount of actual like data to fetch, using 0
would be the same as no limit and deliver the default first 25 likes.)
Be aware that you have to have the corresponding migration enabled in your app settings for that to work.
likes
? – Morton