我正在使用YouTube
api中的此方法将视频添加到播放列表:
POST /feeds/api/playlists/PLAYLIST_ID HTTP/1.1
Host: gdata.youtube.com
Content-Type: application/atom+xml
Content-Length: CONTENT_LENGTH
Authorization: Bearer ACCESS_TOKEN
GData-Version: 2
X-GData-Key: key=DEVELOPER_KEY
<?xml version="1.0" encoding="UTF-8"?>
<entry xmlns="http://www.w3.org/2005/Atom"
xmlns:yt="http://gdata.youtube.com/schemas/2007">
<id>VIDEO_ID</id>
<yt:position>1</yt:position>
</entry>
正如API信息中所写,我需要在视频后发送视频,以便将多个视频添加到播放列表。
如果我这样做,我会在20个视频后收到消息:
<?xml version='1.0' encoding='UTF-8'?><errors><error><domain>yt:quota</domain><code>too_many_recent_calls</code></error></errors>
还有其他方法可以将视频插入播放列表吗?
答案 0 :(得分:1)
使用Youtube Data API v3,您可以通过playlistItems->insert获得结果。
YouTube Data API v3现已推荐并得到广泛支持,v3的配额相当不错。