gpt4 book ai didi

javascript - 类型错误 : Cannot read property 'gmail' of undefined

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

let fs = require('fs');
let google = require('googleapis');

getMessage(userId, messageId, callback) {
let gmail = this.getGmailService();
var request = google.client.gmail.users.messages.get({
'userId': userId,
'id': messageId
});
request.execute(callback);
}

当我从规范中调用这个方法时

getMessage('abcd123987@gmail.com', '15934550ay626ud09')

它吐出以下错误

TypeError: Cannot read property 'gmail' of undefined

有什么意见/建议吗?

最佳答案

有3个选项:1. 您没有安装 googleapis 节点模块。2、你没有导入好。3、你没用好。

选项 1 修复:安装 googleapis 节点模块: yarn 添加googleapis

选项 2 修复:在新版本的 googleapis (V26) 中,我需要将导入行更改为以下内容:var {google} = require('googleapis');

选项 3 修复:您通过 google.client.gmail 调用它,也许只使用 google.gmail

关于javascript - 类型错误 : Cannot read property 'gmail' of undefined,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41558938/

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