Reputation: 277
Is there an endpoint for getting the current users watching a facebook live video? Looking at the reference at https://developers.facebook.com/docs/graph-api/reference/live-video/, I can get the total number of users currently watching, but there doesn't appear to be an edge for retrieving those users... is this even possible?
Upvotes: 0
Views: 253
Reputation: 565
No, that's not a feature supported by the Graph API at the moment. There are edges for comments, likes, and reactions, so you could get a list of some of the users who have watched with those edges, but there is no way to list all viewers.
Upvotes: 1