Analyzing a custom feed using facebook graphapi 2.x

Using FQL, it was easy to get an idea of ​​the user's social involvement. For instance,

Number of posts made by user
Number of likes Number of photo uploads
Number of photo tags

etc...

Since FB wants to leave with FQL, there is no direct way to get statistics with the new api chart endpoints unless you get all the data and paginate one by one. Has anyone encountered the same problem? Any workaround is appreciated

+6
source share
1 answer

There is really no easy way to say this; this is a query with intense information.

  • The number of posts you need /me/posts with read_stream permission
  • The number of user_likes you user_likes for pages below the endpoint /me/likes
  • Number of photos you need /me/photos/uploaded with user_photos permission

and etc.

You just need to go into the documentation and map the FQL to the equivalent of the Graph API.

0
source

Source: https://habr.com/ru/post/978448/


All Articles