从用户活动返回JSON数据后批处理请求



我在批处理请求中的帖子看起来像:

<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>
<id>http://gdata.youtube.com/feeds/api/users/ytUser1</id>
</entry>
<entry>
<id>https://gdata.youtube.com/feeds/api/users/ytUser2</id>
</entry>
<entry>
<id>https://gdata.youtube.com/feeds/api/users/ytUser3</id>
</entry>
</feed>

当然,除了真正的用户以及更多用户。我得到的XML馈回可以很好。有没有办法使用帖子请求JSON格式化数据?我知道使用?alt = json在get请求返回json中,但是是否有可能,如果是这样,在批处理请求中如何?

您应该能够将alt = json添加到发送帖子的URL中。通常,对于发布请求,即您可以发送帖子以创建播放列表条目,并在您发布的URL中包含Alt = JSON,并在JSON中恢复响应主体。如果它不适用于批处理请求,我会感到惊讶。

相关内容

  • 没有找到相关文章

最新更新