YouTube V3创建广播

时间:2013-03-11 10:45:34

标签: youtube-api

我正在尝试使用YouTube的v3 API制作广播。我的请求如下:

curl -H "Authorization: Bearer ******************" -H "Content-type: application/json" -d "  {\"snippet\":{\"title\":\"Hello\", \"scheduledStartTime\":\"2014-01-30T00:00:00.000Z\", \"scheduledEndTime\":\"2014-01-31T00:00:00.000Z\"},\"status\":{\"privacyStatus\":\"public\"}}" https://www.googleapis.com/youtube/v3/liveBroadcasts?part=snippet,status

但是我从谷歌得到的回应是:

{
 "error": {
 "errors": [
 {
   "domain": "youtube.liveBroadcast",
   "reason": "liveBroadcastForbidden",
   "message": "Request is not authorized"
 }
],
"code": 403,
"message": "Request is not authorized"
}
}

我可以确认我传递的访问令牌是正确的。 我在这里做错了吗?

1 个答案:

答案 0 :(得分:0)

Livestreaming API目前仅供合作伙伴使用。它将在以后更广泛地提供。 如果您已获得授予的访问权限,则应从API Console启用YouTube API。看起来你还没有启用它们。