我使用以下代码向gmail发送观看请求。但它正在为邮箱上的每个操作发送推送通知。如果只收到新电子邮件,我需要谷歌发送通知。否则我不希望谷歌发送通知。我正在使用google-api nodejs客户端。有人可以帮我这个吗?
watch (cb) {
const params = {
userId: 'me',
resource: {
labelIds: ['INBOX'],
labelFilterAction: 'include',
topicName: configure.Google.TopicName
}
};
this.gmail.users.watch(params, cb);
}
答案 0 :(得分:-1)
labelIds
需要标签的ID,而不是它的显示名称。
答案 1 :(得分:-1)
您可以进行labelIds: ['UNREAD']
当您使用历史记录ID请求history.list
时,可以选择限制返回到messagesAdded
的消息,尽管您将继续收到无关紧要的推送通知。