我正在使用 javascript 更新 youtube 中的视频注释,为此我需要获取频道中每个视频的访问令牌。有什么方法可以使用 php API 或 javascript 来获取它?
在我用来更新注释的代码下方:
var data = getXml();
data = data.replace(/<requestHeader(.*?)video_id=".*?"(.*?)>/, '<requestHeader$1video_id="'+id+'"$2>');
data = data.replace(/<authenticationHeader(.*?)auth_token=".*?"(.*?)>/, '<authenticationHeader$1auth_token="'+auth_token+'"$2>');
console.log(data);
var xhr = new XMLHttpRequest();
xhr.withCredentials = true;
xhr.open('POST', 'http://www.youtube.com/annotations_auth/update2', true);
xhr.send(data);