Google Apps脚本ContactsApp中的高级搜索

mk_yo

如何通过特定组中的电子邮件获得联系?换句话说-如何合并这两个(或多个)查询:

ContactsApp.getContactsByEmailAddress(...);
ContactsApp.getContactsByGroup(...);
KRR

我认为我们不能将这两个查询结合在一起。但是要达到上述条件,您可以先按组获取联系人,然后根据您要获取其联系人的电子邮件地址来验证他们。

var grpContacts = ContactsApp.getContactsByGroup(...);
 for (var i = 0; i < grpContacts.length; i++) {
insert code to verify with the email address

}

希望对您有所帮助!

本文收集自互联网,转载请注明来源。

如有侵权,请联系[email protected] 删除。

编辑于
0

我来说两句

0条评论
登录后参与评论

相关文章

来自分类Dev

如何从Google Apps脚本中的urlfetch获取Google搜索结果

来自分类Dev

在Google云端硬盘API的Apps脚本中启用高级Google服务-是否需要付费?

来自分类Dev

在Google Apps脚本中使用多个高级参数

来自分类Dev

搜索值,然后在Google表格中查找并使用Google Apps脚本以html显示行值

来自分类Dev

Google Apps 脚本中的 Google Drive 通知

来自分类Dev

Google Apps脚本不支持搜索圈子中的电子邮件

来自分类Dev

如何在Google Apps脚本中模拟搜索和替换范围

来自分类Dev

Google Apps脚本:搜索文件夹中的所有文档

来自分类Dev

Google App Engine与 Google Apps脚本(在Business Apps中)

来自分类Dev

遍历Google Apps脚本中的对象

来自分类Dev

在Google Apps脚本中设置超时

来自分类Dev

在Google Apps脚本中循环数组

来自分类Dev

在Google Apps脚本中创建枚举ButtonSet

来自分类Dev

容器绑定Google Apps脚本中的jQuery?

来自分类Dev

避免Google Apps脚本中的formatDate错误

来自分类Dev

侧边栏中的Google Apps脚本授权

来自分类Dev

Google Apps脚本中的Angular JS

来自分类Dev

Google Apps脚本中PropertiesServices的异常行为

来自分类Dev

在Google Apps脚本中记录范围

来自分类Dev

如何限制Google Apps脚本中的行数?

来自分类Dev

在Google Apps脚本中创建条纹令牌

来自分类Dev

在Google Apps脚本中返回数组

来自分类Dev

Apps脚本中的Google Docs API

来自分类Dev

Google Apps脚本中的附件问题

来自分类Dev

Chrome扩展程序中的Google Apps脚本?

来自分类Dev

容器绑定Google Apps脚本中的jQuery?

来自分类Dev

在Google Apps脚本中删除命名范围

来自分类Dev

在Google Apps脚本中返回空值

来自分类Dev

Google Apps脚本中的标准Javascript

Related 相关文章

热门标签

归档