With FQL, it was straightforward to get insights of social engagement of a user.For example,
Number of posts made by the user
Number of likes
Number of photo uploads
Number of photo tags
etc…
As FB wants to go away with FQL, there is no direct way to get the stats with new graph api endpoints, unless you get all the data and paginate one by one.Has anybody came across with same issue ? Any workaround is appreciated
There really isn't any easy way to say this, this is a data intensive query.
/me/posts
withread_stream
permissionuser_likes
for pages under the/me/likes
endpoint/me/photos/uploaded
withuser_photos
permissionetc.
You really just need to go into the documentation and match the FQL to the Graph API equivalent.