Facebook live API - Set live video to public

228 views Asked by At

So I'm using the javascript SDK. I created the video using:

FB.api(
  '/{user-id}/live_videos',
  'POST',
  {"status":"LIVE_NOW","title":"\"Today's Live Video\"","description":"\"This is the live video for today.\""},
  function(response) {
      // Insert your code here
  }
);

Everything works fine but it sets the video to private and when I go to facebook and try to change it to public, it still can't be accessed. Is there a way to set it to public inside the code above?

0

There are 0 answers