gpt4 book ai didi

javascript - 使用服务帐户访问 Google 表格时未定义回调

转载 作者:行者123 更新时间:2023-11-29 23:23:09 24 4
gpt4 key购买 nike

我正在尝试从公开的 Google 表格访问数据。该工作表对任何人都具有只读访问权限。我正在使用 official Node.js client为了这。我正在使用一个服务帐户来验证请求,因为我正在使用同一个服务帐户访问另一个无法公开的工作表。

代码运行良好,但当我将 Node.js 客户端更新到最新版本后,它开始给我带来奇怪的错误。我已经为错误创建了一个缩小的示例,这是它的代码 -

/*eslint-disable no-console */
const { promisify } = require('util');
const GoogleAuth = require('google-auth-library');
const { google } = require('googleapis');
const googleAuth = new GoogleAuth();

const sheets = google.sheets('v4');
sheets.spreadsheets.values.getAsync = promisify(sheets.spreadsheets.values.get);

async function authorizeWithServiceAccount(serviceAccountKey, scopes) {
try {
let authClient = await authorize(serviceAccountKey, scopes);
return authClient;
} catch (err) {
console.error(err);
throw err;
}
}

function authorize(credentials, scopes) {
return new Promise((resolve, reject) => {
googleAuth.fromJSON(credentials, (err, client) => {
if (err) {
console.error(err);
reject(err);
return;
}
client.scopes = scopes;
client.authorize((err, result) => {
if (err) {
console.error(err);
reject(err);
return;
}
console.log(result, true);
resolve(client);
});
});
});
}

async function getData(auth, spreadsheetId, range) {
try {
return sheets.spreadsheets.values.getAsync({
auth: auth,
spreadsheetId: spreadsheetId,
range: range
});
} catch (e) {
console.error(e);
throw e;
}
}

const serviceAccountJson = require('../configs/keys/service_account'); //The service account json key
const spreadsheetId = 'SPREADSHEET_ID'; // Id of the sheet I am trying to access
const apiKey = 'THE_API_KEY'; //Any API key generated on Google's API console
const range = 'A:M';

async function init() {
let authClient = await authorizeWithServiceAccount(serviceAccountJson, [
'https://www.googleapis.com/auth/spreadsheets.readonly'
]);
return getData(authClient, spreadsheetId, range); //This doesn't work and throw error
// return getData(apiKey, spreadsheetId, range); //This does work and return all the data.
}

init()
.then(result => {
console.log('Received Data');
console.log(result.data);
})
.catch(e => console.error(e));

因此,如果我使用 API key 而不是服务帐户作为 auth 参数,我会按预期获得正确的数据。但是,一旦我改用服务帐户,result.data 就会变成 undefined,然后我会收到此错误。

TypeError: callback is not a function
at JWT.OAuth2Client.postRequest (/Volumes/Projects/Work/node_modules/google-auth-library/lib/auth/oauth2client.js:341:9)
at postRequestCb (/Volumes/Projects/Work/node_modules/google-auth-library/lib/auth/oauth2client.js:297:23)
at Request._callback (/Volumes/Projects/Work/node_modules/google-auth-library/lib/transporters.js:113:17)
at Request.self.callback (/Volumes/Projects/Work/node_modules/request/request.js:186:22)
at emitTwo (events.js:126:13)
at Request.emit (events.js:214:7)
at Request.<anonymous> (/Volumes/Projects/Work/node_modules/request/request.js:1163:10)
at emitOne (events.js:116:13)
at Request.emit (events.js:211:7)
at IncomingMessage.<anonymous> (/Volumes/Projects/Work/node_modules/request/request.js:1085:12)

我正在使用 googleapis库版本 25.x 之前和当时服务帐户 auth 正在工作,但是当我将它更新到 28.x 时,它就停止工作了。

有什么方法可以在 28.x 中使用服务帐户而不是 API key googleapis node.js 客户端?我无法降级它,因为我使用的是其他需要最新版本的 Google API。

最佳答案

好的,我又看了一遍 documentation他们在一个地方提到过about how to do it .我以前是这样使用 google-auth 库的——

const GoogleAuth = require('google-auth-library');
const googleAuth = new GoogleAuth();

在之前的文档中提到过。我想在工作表 API 的文档中,不记得了。但他们现在支持使用 googleapis 包和工作表 API 进行身份验证。因此,我所要做的就是切换到使用身份验证。这就是我现在获得 authClient 的方式,它在测试中工作。

const { google } = require('googleapis');
const authClient = await google.auth.getClient({
credentials: credentials,
scopes: scopes
});

现在,我正在使用最新的 googleapis package / Node.js client 获取正确的数据.

所以问题是我如何获得 authClient。旧方法似乎与最新客户端不兼容。

关于javascript - 使用服务帐户访问 Google 表格时未定义回调,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49985418/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com