Gmail API搜索运算符" newer_than"不起作用

时间:2017-05-04 02:45:56

标签: javascript node.js gmail-api adonis.js

我使用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) => {
     // ...
  }
  // ...
})

我没有看出原因是什么,以及是否有不同的用法。

1 个答案:

答案 0 :(得分:0)

提供的示例不是很清楚,现在所有者已更新为clearer example

var options = {query: 'from:facebook.com newer_than:2d'};