为什么 "category:social" with 在 GMail UI 中搜索,但在 GmailApp.search("category:social", 0, 500) 中不起作用;

Why does "category:social" with in GMail UI search, but does not work in GmailApp.search("category:social", 0, 500);

因此,将“category:social”正确地放入 GMail UI returns 社交选项卡中的电子邮件。

const threads = GmailApp.search("category:social", 0, 500); returns 什么都没有。

社交分类电子邮件确实出现在 const threads = GmailApp.search("category:updates", 0, 500);

我是不是不明白 GMail 如何使用类别标签?

GMAIL UI 和 Apps 脚本搜索 return 完全相同的结果

您可以再次测试,例如如下修改代码并查看日志:

function test(){
  const threads = GmailApp.search("category:social", 0, 500); 
  threads.forEach(function(thread){
  console.log(thread.getFirstMessageSubject())
  })
}

顺便说一句,您可以根据需要调整类别标签 - 从 Gmail UI 或 Gmail API

您可以在打开电子邮件并单击标签图标时查看/编辑您的标签: