Обновление заголовка из видео Youtube с помощью Youtube Google Api V3 - PullRequest
0 голосов
/ 14 апреля 2020

Я недавно использую Google cloud и их YouTube Api. Я пытаюсь обновить заголовок видео, используя найденный мной код js:

function makeAuthorizedCall(auth){

console.log("Calling video.List);

youtube.video.list({
auth: auth,
id: "ponerid"
part: "id.snippet,statistics",
},function(err,response){
if(err){
console.log("the apy return an error: '+err);
return;
}
if(response.data.items){
if(response.data.items[0]){
console.log("found video);
updateVideo(response.data.items[0],auth);
}else{
console.log('Zero items in list');
}
}else{
console.log('no items found');
console.log(response);
return
}

});

}

function updateVideo(video,auth){
var viewText = video.stadisctics.viewCount.toLocaleString();
video.snippet.tittle = "Title I want to change":
console.log("updating")
youtube.videos.update({
auth:auth,
part:'snippet,statistics',
resource:video,
},
function(err,response){
if(err){
console.log('the Api returned and error: '+err);
return;
}
if(response.data.items){
if(response.data.items[0]{
console.log('complete');
}else{
console.log('zero items');
}
}else{
console.log('no items found');
return;
}
}};
}

У меня есть несколько вопросов по этому поводу, Первый идентификатор это видео или канал YT? А во-вторых, можно ли устроиться на работу внутри? Возможно, вы автоматически меняете название каждые 7 дней?

С уважением.

...