admin管理员组

文章数量:1287561

I have all the correct permissions, and I have read that scheduling live videos to Groups has been deprecated. But I am trying to schedule a live video to a Page with API. The equivalent of choosing "Go Live" and then choosing "Later" for the scheduled time (not creating an event) in the Facebook Live Producer GUI.

In the documentation here, it says that I can use one of the SCHEDULED states (such as SCHEDULED_UNPUBLISHED or SCHEDULED_LIVE, etc, but when I do that:

curl -X POST \
  -H "Authorization: Bearer {PAGE_TOKEN}" \
      ".0/{PAGE_ID}/live_videos?status=SCHEDULED_LIVE&start_time=1541539800"

I get:

{"error":{"message":"(#100) Invalid broadcast status, Scheduled Live has been deprecated","type":"OAuthException","code":100,"fbtrace_id":"__"}}

It seems their docs aren't updated. Is there some other way to schedule a live video to a Page (not event)? Or has this API completely been done away with for everything (Pages, Users, and Groups)?

I do weekly livestreams and use a Python script to schedule YouTube. It would be nice to also automatically schedule to Facebook simultaneously in my script.

本文标签: Facebook Live Video API SchedulingStack Overflow