0

我正在使用 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);
4

1 回答 1

0

这是OAuth2的JS示例。您还可以在同一目录中找到其他 JavaScript 示例。

https://code.google.com/p/youtube-api-samples/source/browse/samples/javascript/auth.js

于 2013-03-03T01:07:33.960 回答