我使用gmail-api-sync
模块访问Gmail邮件并检索从Google快讯发送的所有内容。我还尝试检索超过1天或2天的电子邮件,但它不起作用。我试图删除from
选项并且花了太长时间,表明它确实检索了超过2天的电子邮件。
const options = {
query: 'from:googlealerts-noreply@google.com',
newer_than: '1d'
}
return new Promise((resolve, reject) => {
gmail.queryMessages(oauth, options, (error, response) => {
// ...
}
// ...
})
我没有看出原因是什么,以及是否有不同的用法。
答案 0 :(得分:0)
提供的示例不是很清楚,现在所有者已更新为clearer example
var options = {query: 'from:facebook.com newer_than:2d'};