Is it possible to search for Facebook Live Videos through the Graph API?
The Facebook Live Video API is all about publishing video, which is not what I want. I have looked through the search API and there does not seem to be any obvious way to search for videos through it.
What I would really like to do is find a list of live videos in a given area.
2
Answers
Unfortunately, no. Not at this time.
You can get videos for individual users if they authorize your app, but that’s it.
I have successfully used the Graph API via javascript SDK to view my
live_videos
using a user token with scope:email, public_profile
provided they were created with a privacy setting toPUBLIC
(using FMLE). If I create a stream with Wirecast, it starts asONLY_ME
and is not accessible via the API. HTH