0

自分が所有するドキュメントから改訂履歴を取得しようとしています。デバッグすると、ログインが必要な 401 エラーが表示されます。ただし、匿名の ConsumerKey/ConsumerSecret を使用してログインを渡そうとしていますが、デバッグすると、urlFetch が未定義として返されます。これまでのコードは次のとおりです。

//Get revison history
//fileId is the ID of the resource from Google Docs
function getRevisionHistory(fileId){

//Scope
var scope = 'https://www.googleapis.com/auth/drive';

//Get Google oAuth Arguments
var fetchArgs = googleOAuth_('docs', scope);

//Set the fetch method
fetchArgs.method = 'LIST';

//Feed URL
var url = 'https://www.googleapis.com/drive/v2/files/' + fileId + '/revisionsv=3&alt=json';
var urlFetch = UrlFetchApp.fetch(url);

//Get the json of revision history entry
var jsonFeed = Utilities.jsonParse(urlFetch.getContentText()).feed.entry;
//return the revison history feed
return jsonFeed
}

//Google oAuth
//Used by getRevisionHistory
function googleOAuth_(name, scope) {
  var oAuthConfig = UrlFetchApp.addOAuthService(name);
  oAuthConfig.setAccessTokenUrl("https://www.google.com/accounts/OAuthGetAccessToken");
  oAuthConfig.setRequestTokenUrl("https://www.google.com/accounts/OAuthGetRequestToken?scope="+scope);
  oAuthConfig.setAuthorizationUrl("https://www.google.com/accounts/OAuthAuthorizeToken");
  oAuthConfig.setConsumerKey("anonymous");
  oAuthConfig.setConsumerSecret("anonymous");
return {oAuthServiceName:name, oAuthUseToken:"always"};
}

function trackChanges(jsonFeed){
  var doc = DocumentApp.getActiveDocument();
  var docName = doc.getName();
  var docId = doc.getId();

  getRevisionHistory(docId)
  var jsonString = Utilities.jsonStringify(jsonFeed);
  var changes = DocumentApp.create("Track Changes for " + docName);
  var text = changes.getBody().editAsText();
  text.appendText(jsonString);
   }

どんな助けでも大歓迎です。

4

1 に答える 1

0

&key=mykeyドライブ API への UrlFetch 呼び出しにAPI キー ( ) を追加してみてください。Drive API を有効にして、 http://developer.google.com/consoleで API キーを取得できます。

詳細については、こちらをご覧ください - https://developers.google.com/console/help/#generatingdevkeys

于 2013-07-25T21:18:35.640 に答える