我正在使用YouTube API(版本2)从我的应用程序创建Live Events。事件创建成功,但用户抱怨通过API创建的事件与直接通过YouTube网站创建的事件相比,Ingestation设置的可用性有所不同。
我链接了两张图片来说明差异:
第一个是设置如何查找通过API创建的事件。第二个是通过YouTube网站创建的事件的设置外观。
请注意编码器设置的差异。我能对API调用做些什么吗?以获得与第二张图片中的设置相匹配的设置?或者,当通过API创建时,所有事件总是这样出现的?
以下是对API的调用示例(已编辑授权位):
Authorization: Bearer ************
Accept: application/atom+xml
Content-Type: application/atom+xml
GData-Version: 2
X-GData-Key: key=*********
<entry xmlns:yt="http://gdata.youtube.com/schemas/2007" xmlns:media="http://search.yahoo.com/mrss/" xmlns="http://www.w3.org/2005/Atom">
<title>Test</title>
<summary>Test</summary>
<yt:when start="2013-08-14T17:00:00Z" />
<content type="application/atom+xml">
<entry>
<media:group>
<media:category label="Sports" scheme="http://gdata.youtube.com/schemas/2007/categories.cat" />
</media:group>
</entry>
</content>
</entry>
由于使用了GDATA(旧版,v2)API,因此事件是在旧版v2平台中创建的。
在web中,看起来您选择了v3(新)平台,所以事件是在新平台中创建的。
我建议你使用新的直播API。
或者你也可以选择退出网络使用旧版本。
下面是一篇详细的博客文章,描述了API和我的谷歌I/O对这个主题的讨论。