本文介绍了无法使用Gmail API中的高级搜索功能搜索特定的彩色明星(超级明星)。的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

这是我们用过的。

为了获得红星邮件,这就是我们所要求的。

In order to GET emails with a red star, this is what we requested.

结果为0.
其他标准如:starred,has:附件按预期工作,我们在做有什么不对吗?

The result was 0.Other criteria such as is:starred, has:attachment worked just as expected, are we doing something wrong?

推荐答案

您无法在Gmail API中使用标志的名称。您必须使用以下代码:

You cannot use the names of the flags in the Gmail API. You have to use the following codes:

has:yellow-star <=> l:^ss_sy
has:blue-star <=> l:^ss_sb
has:red-star <=> l:^ss_sr
has:orange-star <=> l:^ss_so
has:green-star <=> l:^ss_sg
has:purple-star <=> l:^ss_sp
has:red-bang <=> l:^ss_cr
has:yellow-bang <=> l:^ss_cy
has:blue-info <=> l:^ss_cb
has:orange-guillemet <=> l:^ss_co
has:green-check <=> l:^ss_cg
has:purple-question <=> l:^ss_cp

来源:

这篇关于无法使用Gmail API中的高级搜索功能搜索特定的彩色明星(超级明星)。的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

09-09 20:34