【发布时间】:2020-09-06 19:01:07
【问题描述】:
我想编写一个应用程序来处理我的一些以某种方式标记的 gmail 电子邮件。
示例代码 here 为我的代码提供了一个起点(我已使用 promises 而不是 async await 对其进行了重写):
'use strict';
const path = require('path');
const { google } = require('googleapis');
const { authenticate } = require('@google-cloud/local-auth');
authenticate({
keyfilePath: path.join(__dirname, 'key.json'),
scopes: [
'https://www.googleapis.com/auth/gmail.readonly',
],
}).then(auth => {
google.options({ auth })
gmail.users.messages.list({
userId: "me",
}).then((res) => {
console.log(res.data)
}).catch(err => {
console.log(err)
})
}).catch(err => {
console.log(err);
})
以下是我目前采取的步骤:
- 创建了一个谷歌云项目
- 创建了具有所有者角色的服务帐号
- 从服务账户下载了密钥文件并复制到我的代码目录为
key.json - 运行代码:
GOOGLE_APPLICATION_CREDENTIALS="$(pwd)/key.json" node index.js
这是我得到的错误:
TypeError: Cannot read property 'redirect_uris' of undefined
at authenticate (/home/user/dev/gmail-processor/node_modules/@google-cloud/local-auth/build/src/index.js:46:15)
at Object.<anonymous> (/home/user/dev/gmail-processor/index.js:7:1)
at Module._compile (internal/modules/cjs/loader.js:778:30)
at Object.Module._extensions..js (internal/modules/cjs/loader.js:789:10)
at Module.load (internal/modules/cjs/loader.js:653:32)
at tryModuleLoad (internal/modules/cjs/loader.js:593:12)
at Function.Module._load (internal/modules/cjs/loader.js:585:3)
at Function.Module.runMain (internal/modules/cjs/loader.js:831:12)
at startup (internal/bootstrap/node.js:283:19)
at bootstrapNodeJSCore (internal/bootstrap/node.js:622:3)
似乎它需要带有重定向 url 的 oauth 凭据。此外,当我调用authenticate 时包含keyfilePath 时,我正在导出GOOGLE_APPLICATION_CREDENTIALS 似乎是多余的。我做错了什么,我怎样才能让这段代码成功执行?
【问题讨论】:
-
您找到解决此问题的方法了吗?我在使用 Youtube Data API 时遇到了同样的问题。
标签: javascript node.js google-cloud-platform gmail-api google-auth-library-nodejs