Javascriptを使用してプライベートGoogleスプレッドシートにアクセスしようとしています。OAuth2.0の承認に成功し、すべてのGoogleドライブドキュメントのリストを表示できます。私ができないように見えるのは、特定のスプレッドシートに入るということです。コードは次のとおりで、関数「retrieveAllFiles」の関連するスプレッドシートコードが含まれています。これの多くは、Googleのチュートリアルから抜粋されています。
var clientId = 'working';
var apiKey = 'working';
var scopes = 'https://www.googleapis.com/auth/drive.file https://www.googleapis.com/auth/drive https://spreadsheets.google.com/feeds';
function handleClientLoad() {
console.log('inside handleClientLoad function');
gapi.client.setApiKey(apiKey);
window.setTimeout(checkAuth,1);
}
function checkAuth() {
console.log('inside checkAuth function');
gapi.auth.authorize({client_id: clientId, scope: scopes, immediate: true}, handleAuthResult);
console.log('finished checkAuth function');
}
function handleAuthResult(authResult) {
console.log('inside handleAuthResult function');
var authButton = document.getElementById('authButton');
authButton.style.display = 'none';
if (authResult && !authResult.error) {
//Access token has been succesfully retrieved, requests can be sent to the API.
apiCalls();
} else {
//No access token could be retrieved, show the button to start the authorization flow.
authButton.style.display = 'block';
authButton.onclick = function() {
gapi.auth.authorize({client_id: clientId, scope: scopes, immediate: false}, handleAuthResult);
};
}
}
function apiCalls() {
console.log('inside apiCalls function');
gapi.client.load('drive', 'v2', function() {
retrieveAllFiles(callback);
});
}
function retrieveAllFiles(callback) {
$.get('http://spreadsheets.google.com/feeds/spreadsheets/private/full', function(data) {
console.log('get request processed');
console.log(data);
});
console.log('inside retrieveAllFiles function');
var retrievePageOfFiles = function(request, result) {
request.execute(function(resp) {
result = result.concat(resp.items);
var nextPageToken = resp.nextPageToken;
if (nextPageToken) {
request = gapi.client.drive.files.list({
'pageToken': nextPageToken
});
retrievePageOfFiles(request, result);
} else {
callback(result);
}
});
}
var initialRequest = gapi.client.drive.files.list();
retrievePageOfFiles(initialRequest, []);
}
function callback(result) {
console.log('all should be loaded at this point');
console.log(result);
$('#drive-list').append('<ul class="items"></ul>');
$.map(result, function(v,i){
$('.items').append('<li>' + v.title + ':' + v.id + '</li>');
});
}
したがって、明確にするために、最終結果は現在、すべてのGoogleドライブドキュメントのリストですが、「データを処理する」ためのconsole.logはありません。コンソールにエラーメッセージが表示されないため、何が起こっているのかわかりません。
ありがとう。