This commit is contained in:
adueck 2024-11-27 23:19:33 +05:00
parent df685c3edb
commit 1a1a56cf3f
1 changed files with 2 additions and 7 deletions

View File

@ -21,13 +21,8 @@ const reviewTasksDb = nano.db.use("review-tasks");
const auth = new google.auth.GoogleAuth({
credentials: {
// IMPORTANT!! have to have key stored in Base64 because of the
// weirdness of node handling spaces in the key (at least there was on AWS)
private_key: Buffer.from(
env.lingdocsServiceAccountEmail,
"base64"
).toString("ascii"),
client_email: env.lingdocsServiceAccountKey,
private_key: env.lingdocsServiceAccountKey,
client_email: env.lingdocsServiceAccountEmail,
},
scopes: [
"https://www.googleapis.com/auth/spreadsheets",