Facebook Chart api - How to get count of tagged photos

I am trying to get a count of tagged photos for a user.

When receiving custom albums using "me / albums" there is a "count" field for each album containing the number of photos in each album. When using "me / photos" to get all the marked photos there is no "count" field.

Is there any other query that can provide this type of data? I switched to the documentation on the api schedule and did not find anything.

+4
source share
1 answer

I don’t think there is a count field for tagged photos, and there is no COUNT operator in FQL, so the most efficient way is to minimize the returned package and count it yourself:

 fql?q=SELECT '' FROM photo_tag WHERE subject=me() 
+3
source

All Articles