Youtube gdata API返回有限的结果

我正在尝试使用gdata API检索由以下YouTube网址返回的视频。

https://gdata.youtube.com/feeds/api/users/lyndapodcast/uploads?v=2&max-results=50&start-index=1&q=autodesk

如果我使用上面的url,我只能得到前4个结果,而我可以看到这个查询产生更多结果。

https://www.youtube.com/user/lyndapodcast/search?query=autodesk

有没有不同的方式来构建这个网址? 我正在使用标准的gdata java API。


    String feedUrl = "https://gdata.youtube.com/feeds/api/users/lyndapodcast/uploads?v=2&max-results=50&start-index=1&q=autodesk";
    YouTubeService service = new YouTubeService("Test_App");
    Query query = new Query(new URL(feedUrl));
    VideoFeed videoFeed = service.getFeed(query, VideoFeed.class);
    for(VideoEntry videoEntry : videoFeed.getEntries() ) {
              ....
    }

任何指针将不胜感激。

-谢谢


以下网址为我显示了50个结果:

https://gdata.youtube.com/feeds/api/users/lyndapodcast/uploads?v=2&max-results=50&start-index=1&query=autodesk

链接地址: http://www.djcxy.com/p/66155.html

上一篇: Youtube gdata API returning limited results

下一篇: Why is the video description returned from the YouTube Data API truncated?