FaceBook API for retrieving user activity log

I need to get the user activity log. I tried / {user-id} / actions but did not return the user activity log. I know that from "fql" we can get some actions, but recently FB announced that they depreciate fql.

I used the notification API, but backtracking is if the user has already read these notifications, then the API returns an empty data set.

Any other way I can get the user's activity log.

enter image description here

thanks

+5
source share
1 answer

Facebook does not have an API that allows you to access or retrieve a user's activity log. In addition, I doubt that one day it will be alone, since it is a private log of user information, including those that they do not want to see other users and applications.

The only support for activities on Facebook is the hobbies / activities that the user has added to his profile. This, obviously, is not what you need, but I will tell you in detail anyway. You need to request the permission of user_activities , and then call the API call:

 /me/activities 
+3
source

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


All Articles