我正在使用 Google Apps 脚本来尝试获取用于 Google 绘图的各种修订的 exportLinks 列表。下面的代码重现了该问题。要试用它,请使用绘图 ID 调用 getRevisionHx。
//Google oAuth
function googleOAuth_(name,scope) {
var oAuthConfig = UrlFetchApp.addOAuthService(name);
oAuthConfig.setRequestTokenUrl("https://www.google.com/accounts/OAuthGetRequestToken?scope="+scope);
oAuthConfig.setAuthorizationUrl("https://www.google.com/accounts/OAuthAuthorizeToken");
oAuthConfig.setAccessTokenUrl("https://www.google.com/accounts/OAuthGetAccessToken");
oAuthConfig.setConsumerKey("anonymous");
oAuthConfig.setConsumerSecret("anonymous");
return {oAuthServiceName:name, oAuthUseToken:"always"};
}
function getRevisionHx(resource_id){
var scope = 'https://www.googleapis.com/auth/drive';
var myKey = KEY_DELETED_FROM_SAMPLE_CODE;
var fetchArgs = googleOAuth_('drive', scope);
fetchArgs.method = 'GET';
var url = "https://www.googleapis.com/drive/v2/files/" + resource_id + "/revisions?key=" + myKey;
var urlFetch = UrlFetchApp.fetch(url, fetchArgs);
... //snip
}
在 snip 中,urlFetch 已经成功,并且它有一个带有 exportLinks 的修订列表。如果我使用其中一个 exportLinks 并使用 Web 浏览器下载它,它总是检索文档的最新版本,而不是指定的修订版本。这是一个错误还是我做错了什么?
换句话说,上述所有代码似乎都可以正常工作(API 调用成功并返回预期的内容),但返回的 exportLink URL 并未指向他们所说的修订版。