作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我使用以下方法获取 YouTube 用户的视频列表。
首先,它查找用户 channel 的播放列表,然后查找该播放列表的视频标题。
It display the most recent videos. I need to get most popular videos. How to modify this function to get most popular videos?
// Get Uploads Playlist
$.get(
"https://www.googleapis.com/youtube/v3/channels",{
part : 'contentDetails',
forUsername : 'USER_CHANNEL_NAME',
key: 'YOUR_API_KEY'},
function(data) {
$.each( data.items, function( i, item ) {
pid = item.contentDetails.relatedPlaylists.uploads;
getVids(pid);
});
}
);
//Get Videos
function getVids(pid){
$.get(
"https://www.googleapis.com/youtube/v3/playlistItems",{
part : 'snippet',
maxResults : 20,
playlistId : pid,
key: 'YOUR_API_KEY'},
function(data) {
var results;
$.each( data.items, function( i, item ) {
results = '<li>'+ item.snippet.title +'</li>';
$('#results').append(results);
});
}
<!--In your HTML -->
<ul id="results"></ul
最佳答案
您可以尝试使用videos.list方法并将图表参数的值设置为mostPopular。
chart - The chart parameter identifies the chart that you want to retrieve.
Acceptable values are:
- mostPopular – Return the most popular videos for the specified content region and video category.
https://www.googleapis.com/youtube/v3/videos?chart=mostPopular&key={YOUR_API_KEY}&part=snippet&maxResults=4
有关更多信息,请查看此 page .
关于javascript - 如何修改此功能以获得最受欢迎的视频? (YouTube API v3),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37088264/
我是一名优秀的程序员,十分优秀!