4

我想编写一个应用程序来处理我的一些以某种方式标记的 gmail 电子邮件。

这里的示例代码为我的代码提供了一个起点(我已经使用 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 凭据。此外,GOOGLE_APPLICATION_CREDENTIALSkeyfilePath我调用authenticate. 我做错了什么,我怎样才能让这段代码成功执行?

4

2 回答 2

1

我通过使用解决了这个问题:

const auth = new google.auth.GoogleAuth({
  keyFile: path.join(__dirname, 'key.json'),
  scopes: ['https://www.googleapis.com/auth/gmail.readonly'],
});

代替:

const auth = await authenticate({
  keyfilePath: path.join(__dirname, 'key.json'),
  scopes: ['https://www.googleapis.com/auth/gmail.readonly'],
});
于 2021-04-29T10:07:15.007 回答
0

在你的key.json文件中,你必须通过你的redirect_uris

{
  ...
  "web": {
   // put your callback here:
    "redirect_uris": ["http://localhost:3000/oauth2callback"]
  }
}

在那之后,它应该工作。不过,文档并不清楚这一点。我还在想办法。

编辑 1

好吧,我明白了……

如果您尚未创建 OAuth 2.0 客户端 ID,请转到Google Cloud Console 上的凭据部分,然后下载 JSON 文件。使用该 JSON 文件作为您的keys.json. 它对我有用:)

于 2021-02-26T18:49:56.850 回答