0

我正在使用 youtube-api 并发出以下批处理 POST 请求:

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'/>

单个 GET 请求: http: //gdata.youtube.com/feeds/api/videos/h5jKcDH9s64

工作正常。

有人知道有什么问题吗?

4

1 回答 1

1

您没有发布到正确的 URL。要批量请求视频条目,您需要 POST 到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>
于 2012-10-23T02:04:51.643 回答