提问人:SameemSh. 提问时间:11/3/2023 最后编辑:SameemSh. 更新时间:11/3/2023 访问量:36
如何使用 Gmail Api 将新邮件添加到 NodeJs 中的现有线程
How to add new message to an existing thread in NodeJs using Gmail Api
问:
我正在创建使用 Google API 复制 gmail 的服务。我想在现有线程中添加一条新消息,我有特定线程的 threadId。我已经实现了搜索特定帐户的所有邮件(下面的代码)。我浏览了 Gmail api 文档,但找不到任何特定的 REST 服务点。
searchGmail = async (searchItem) => {
console.log(await this.accessToken)
var config1 = {
method: "get",
url:
"https://www.googleapis.com/gmail/v1/users/me/[email protected]",
headers: {
Authorization: `Bearer ${await this.accessToken}`,
},
};
var threadId = "";
await axios(config1)
.then(async function (response) {
data = await response.data;
console.log("Data = " + data);
})
.catch(function (error) {
console.log(error);
});
return threadId;
};
我正在使用 axios 在 node 中实现它。也
跟进,我想知道如何获取/获取特定 threadId 和 labelId 的消息。
答: 暂无答案
评论