gpt4 book ai didi

javascript - 使用 YouTube API 创建播放列表时如何更改标题和说明?

转载 作者:行者123 更新时间:2023-12-03 05:18:13 25 4
gpt4 key购买 nike

我尝试通过在 playlist_updates.html 中添加字段来更改播放列表的默认名称和描述,但我无法更改它。

以下是 YouTube API 的引用:https://developers.google.com/youtube/v3/code_samples/javascript#create-a-playlist

最佳答案

您需要使用update API为了更新播放列表。您需要获取播放列表的播放列表 ID(从插入结果中获取)并像这样更新

var request = gapi.client.youtube.playlists.update({
part: 'id,snippet',
resource: {
id: '{insert playlist id here}',
snippet: {
title: 'New Playlist Title',
description: 'Well this is a new description hope you like it :)'
}
}
});

然后执行您的请求

request.execute(function(response) {
var result = response.result;
if(result){
alert('updated playlist id : '+ result.id + ' with title: '+ result.snippet.title + ' and description : ' + result.snippet.description);
} else {
alert('some error');
}
});

关于javascript - 使用 YouTube API 创建播放列表时如何更改标题和说明?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41520089/

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