带有批处理请求的优酷 API "Invalid entry Id/Uri"



我正在与youtube-api合作,并进行以下批次重新要求:

https://gdata.youtube.com/feeds/api/users/batch?v=2.1

带有身体:

<feed xmlns='http://www.w3.org/2005/Atom'
      xmlns:media='http://search.yahoo.com/mrss/'
      xmlns:batch='http://schemas.google.com/gdata/batch'
      xmlns:yt='http://gdata.youtube.com/schemas/2007'>
  <batch:operation type="query"/>
  <entry>
    <batch:operation type="query"/>    <id>http://gdata.youtube.com/feeds/api/videos/h5jKcDH9s64</id>
  </entry>
</feed>

但是在响应中遇到错误。部分响应:

<title>Error</title>
<content>Invalid entry Id/Uri</content>
<batch:operation type='query'/>
<batch:status code='400' reason='Invalid entry Id/Uri'/>

单一的邀请:http://gdata.youtube.com/feeds/api/videos/h5jkcdh9s64

工作正常。

有人知道有什么问题吗?

您不发布正确的URL。要执行视频条目的批次请求,您需要发布到https://gdata.youtube.com/feeds/api/videos/batch?v=2

请求主体应该看起来像

<feed xmlns='http://www.w3.org/2005/Atom'
      xmlns:batch='http://schemas.google.com/gdata/batch'>
  <batch:operation type="query"/>
  <entry>
    <id>http://gdata.youtube.com/feeds/api/videos/VIDEO_ID</id>
  </entry>
  <entry>
    <id>http://gdata.youtube.com/feeds/api/videos/VIDEO_ID</id>
  </entry>
</feed>

相关内容

  • 没有找到相关文章

最新更新