gpt4 book ai didi

youtube - 嵌入 YouTube 评论和点赞

转载 作者:行者123 更新时间:2023-12-02 07:09:09 25 4
gpt4 key购买 nike

我想知道是否可以在视频中嵌入 YouTube 视频的评论和点赞按钮?如果有这样的事情,我该怎么做或者我可以在哪里获得更多信息?谢谢

最佳答案

在这里您可以看到如何获取和显示视频评论的示例

Getting Youtube Video Information using javascript/jquery

在主题浏览器项目中,您可以看到如何添加“喜欢”或将视频添加到您的收藏夹:

https://code.google.com/p/yt-topic-explorer/source/browse/app/views/main.html

<button ng-click="addToList($event.target, 'likes', videoResult.id)">{{'LIKE'|i18n}}</button>
<button ng-click="addToList($event.target, 'favorites', videoResult.id)">{{'FAVORITE'|i18n}}</button>

并在:

https://code.google.com/p/yt-topic-explorer/source/browse/app/scripts/controllers/main.js

$scope.addToList = function(target, listName, videoId) {
var listId = $rootScope.relatedPlaylists[listName];

target.textContent = topicExplorerApp.filter.i18n('ADDING');
target.disabled = true;

youtube({
method: 'POST',
service: 'playlistItems',
params: {
part: 'snippet'
},
body: {
snippet: {
playlistId: listId,
resourceId: {
kind: constants.VIDEO_KIND,
videoId: videoId
}
}
},
callback: function(results) {
if ('error' in results) {
target.textContent = 'Error';
} else {
target.textContent = topicExplorerApp.filter.i18n('ADDED');
}
}
});
};

关于youtube - 嵌入 YouTube 评论和点赞,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9716005/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com