0

我正在尝试在 youtube/google 数据 api 中搜索持续时间超过 x 秒且至少有 x 次观看的视频。

我希望像

"http://gdata.youtube.com/feeds/api/videos?q=surfing&max-results=25&fields=entry[yt:statistics/@viewCount > 100]&fields=entry[yt:statistics/@seconds > 300]"

会起作用,但这给了我一个错误(“不一致的重复查询参数字段”)。我究竟做错了什么?

4

1 回答 1

2

找到正确的语法

http://gdata.youtube.com/feeds/api/videos?q=surfing&max-results=25&fields=entry[yt:statistics/@viewCount and media:group/yt:duration/@seconds > 300]
于 2012-11-18T19:27:10.637 回答