Linkedin / Facebook Api so users can comment on users from the network update

I use the linkedin api to get network updates. And I can get comments that the user made on his update or on his 1st degree network updates .

My question is: is there any possible way to get a comment made by the user during an out of network update? Thanks.

Update: question for facebook api It would also be useful if someone could lead me to ensure that recent likes users are in the status of friends / friends or friends on Facebook. They appear on the facebook profile page in the last action block and / or on the facebook activity log page . Although it can be obtained if the user likes the page / fan page. Any help is appreciated. Do not help .. :-( Answer please ... Thanks for the feedback!

+6
source share
1 answer

I will try to answer your question about the Facebook API.

You can get the current username in status updates using this FQL query:

 SELECT object_id FROM like WHERE user_id=me() AND object_type="status" 

This will give you a list of updated status updates, sorted by time, with the most recent in the first place. This includes status updates only, not photos or videos or any other type of object. You can change your request to another type of object by changing the type at the end of the request ("status") to one of the following:

 photo album event group note link video application check-in review comment post 

You will need

 read_stream user_likes 

for this request.

You can learn more about the FQL How-to table here .

+1
source

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


All Articles