Perhaps while fetching a particular feed, you would also like to retrieve the reactions of the active user. This can be done like so:
client.feed(‘timeline’, ‘bob’).get({
reactions: { own: true, recent: true, counts: true }
});
In this example, your user is reading bob’s timeline feed which will include the most recent reactions to all activities and also the reactions of the user performing the request.
Comments
0 comments
Please sign in to leave a comment.