已弃用的属性
属性 | 类型 | 说明 |
---|---|---|
ExtendedField |
| |
Field |
| |
Gender |
| |
Month | Month | |
Priority |
| |
Sensitivity |
|
已弃用的方法
已弃用的方法
createContact(givenName, familyName, email)
createContact(givenName, familyName, email)
已弃用。此函数已弃用,不应在新脚本中使用。
创建新联系人。
// The code below creates a new contact with the name "John Doe" and the email address // "john.doe@example.com". var contact = ContactsApp.createContact('John', 'Doe', 'john.doe@example.com');
参数
名称 | 类型 | 说明 |
---|---|---|
givenName | String | 联系人的名字 |
familyName | String | 联系人的姓氏 |
email | String | 联系人的电子邮件地址 |
返回
- 新创建的 Contact 对象Contact
授权
使用此方法的脚本需要获得以下一个或多个范围的授权:
-
https://www.google.com/m8/feeds
另请参阅
createContactGroup(name)
createContactGroup(name)
已弃用。此函数已弃用,不应在新脚本中使用。
使用指定名称创建联系人群组
// The code below creates a new contact group named "Work Friends" var group = ContactsApp.createContactGroup("Work Friends");
参数
名称 | 类型 | 说明 |
---|---|---|
name | String | 新联系人群组的名称 |
返回
- 新创建的联系人群组ContactGroup
授权
使用此方法的脚本需要获得以下一个或多个范围的授权:
-
https://www.google.com/m8/feeds
另请参阅
deleteContact(contact)
deleteContact(contact)
已弃用。此函数已弃用,不应在新脚本中使用。
删除联系人。
// The code below retrieves a contact with the email address "john.doe@example.com" // and then deletes that contact. var contact = ContactsApp.getContact('john.doe@example.com'); ContactsApp.deleteContact(contact);
参数
名称 | 类型 | 说明 |
---|---|---|
contact |
| 要删除的联系人 |
授权
使用此方法的脚本需要获得以下一个或多个范围的授权:
-
https://www.google.com/m8/feeds
另请参阅
deleteContactGroup(group)
deleteContactGroup(group)
已弃用。此函数已弃用,不应在新脚本中使用。
删除联系人群组
// The code below creates deletes the contact group named "Work Friends" var group = ContactsApp.getContactGroup("Work Friends"); ContactsApp.deleteContactGroup(group);
参数
名称 | 类型 | 说明 |
---|---|---|
group |
| 要删除的联系人群组 |
授权
使用此方法的脚本需要获得以下一个或多个范围的授权:
-
https://www.google.com/m8/feeds
另请参阅
findByEmailAddress(email)
findByEmailAddress(email)
findContactGroup(name)
findContactGroup(name)
已弃用。此函数已弃用,不应在新脚本中使用。
查找具有指定名称的联系人群组。
参数
名称 | 类型 | 说明 |
---|---|---|
name | String | 要查找的联系人群组名称 |
返回
- 与指定名称匹配的联系人群组ContactGroup
授权
使用此方法的脚本需要获得以下一个或多个范围的授权:
-
https://www.google.com/m8/feeds
getAllContacts()
getAllContacts()
getContact(emailAddress)
getContact(emailAddress)
已弃用。此函数已弃用,不应在新脚本中使用。
按电子邮件地址获取联系人。
如果多个联系人共用同一个电子邮件地址,此方法会优先考虑拥有 将电子邮件地址标记为了主电子邮件地址;如果其中没有任何联系人的电子邮件地址标记为 主要联系人或多个联系人的电子邮件地址被标记为主要地址,则返回第一个 会得到排序的联系人顺序。
// The code below retrieves a contact with the email address "john.doe@example.com". var contact = ContactsApp.getContact('john.doe@example.com');
参数
名称 | 类型 | 说明 |
---|---|---|
emailAddress | String | 联系人的电子邮件地址 |
返回
- 包含该电子邮件地址的联系人Contact
授权
使用此方法的脚本需要获得以下一个或多个范围的授权:
-
https://www.google.com/m8/feeds
另请参阅
getContactById(id)
getContactById(id)
已弃用。此函数已弃用,不应在新脚本中使用。
获取具有此 ID 的联系人。
// The code below retrieves the contact with the id // "http://www.google.com/m8/feeds/contacts/john.doe%40example.com/base/7c86afde08d34ca5" var id = 'http://www.google.com/m8/feeds/contacts/john.doe%40example.com/base/7c86afde08d34c'; var contact = ContactApp.getContactById(id);
参数
名称 | 类型 | 说明 |
---|---|---|
id | String | 要检索的联系人的 ID |
返回
- 匹配的联系人或 nullContact
授权
使用此方法的脚本需要获得以下一个或多个范围的授权:
-
https://www.google.com/m8/feeds
另请参阅
getContactGroup(name)
getContactGroup(name)
已弃用。此函数已弃用,不应在新脚本中使用。
获取具有指定名称的联系人群组,或者如果未找到此类联系人群组,则返回 null。
// The code below returns the contact group with the name "Work Friends" var group = ContactsApp.getContactGroup('Work Friends');
参数
名称 | 类型 | 说明 |
---|---|---|
name | String | 要匹配的联系人群组的名称 |
返回
- 匹配的联系人组;如果未找到匹配的联系人组,则返回 nullContactGroup
授权
使用此方法的脚本需要获得以下一个或多个范围的授权:
-
https://www.google.com/m8/feeds
另请参阅
getContactGroupById(id)
getContactGroupById(id)
已弃用。此函数已弃用,不应在新脚本中使用。
获取具有指定 ID 的联系人群组;如果未找到此类联系人群组,则返回 null。
// The code below returns the contact group with the id // "http://www.google.com/m8/feeds/groups/john.doe%40example.com/base/54eefbb093fdecb" var id = "http://www.google.com/m8/feeds/groups/john.doe%40example.com/base/54eefbb093fdecb"; var group = ContactsApp.getContactGroupById(id);
参数
名称 | 类型 | 说明 |
---|---|---|
id | String | 要匹配的联系人群组的 ID |
返回
- 匹配的联系人组;如果未找到匹配的联系人组,则返回 nullContactGroup
另请参阅
getContactGroups()
getContactGroups()
已弃用。此函数已弃用,不应在新脚本中使用。
获取用户的联系人群组的完整列表。
用户可以有一个联系人列表,还可能有联系人群组列表。每个 联系人群组可以包含联系人。此方法返回所有联系人群组的列表。
// The retrieves all the contract groups for the user and then logs the group name of each // contact group. var groups = ContactsApp.getContactGroups(); for (var i = 0; i < groups.length; i++) { Logger.log(groups[i].getName()); }
返回
- 用户的联系人群组数组ContactGroup[]
授权
使用此方法的脚本需要获得以下一个或多个范围的授权:
-
https://www.google.com/m8/feeds
另请参阅
getContacts()
getContacts()
getContactsByAddress(query)
getContactsByAddress(query)
已弃用。此函数已弃用,不应在新脚本中使用。
获取与某地址匹配的联系人。
// The code below returns an array of contacts where the contact's address contains // "San Francisco'. var contacts = ContactsApp.getContactsByAddress('San Francisco');
参数
名称 | 类型 | 说明 |
---|---|---|
query | String | 要在联系人地址中搜索的字符串 |
返回
- 匹配的联系人数组Contact[]
授权
使用此方法的脚本需要获得以下一个或多个范围的授权:
-
https://www.google.com/m8/feeds
另请参阅
getContactsByAddress(query, label)
getContactsByAddress(query, label)
已弃用。此函数已弃用,不应在新脚本中使用。
获取与地址匹配的联系人(仅限特定字段)。
// The code below returns an array of contacts where the contact's address contains // "San Francisco" in the Home address field. var contacts = ContactsApp.getContactsByAddress('San Francisco', ContactsApp.Field.HOME_ADDRESS);
参数
名称 | 类型 | 说明 |
---|---|---|
query | String | 要在联系人的地址中搜索的字符串 |
label |
| 要在其中进行搜索的字段 |
返回
- 匹配的联系人数组Contact[]
授权
使用此方法的脚本需要获得以下一个或多个范围的授权:
-
https://www.google.com/m8/feeds
另请参阅
getContactsByAddress(query, label)
getContactsByAddress(query, label)
已弃用。此函数已弃用,不应在新脚本中使用。
获取与地址匹配的联系人(仅限指定的自定义地址标签)。
// The code below returns an array of contacts where the contact's address contains // "San Francisco" in a custom address label (created by the user) called // "vacation". var contacts = ContactsApp.getContactsByAddress('San Francisco', 'vacation');
参数
名称 | 类型 | 说明 |
---|---|---|
query | String | 要在联系人地址中搜索指定自定义地址的字符串 标签 |
label | String | 要在其中进行搜索的自定义地址标签 |
返回
- 匹配的联系人数组Contact[]
授权
使用此方法的脚本需要获得以下一个或多个范围的授权:
-
https://www.google.com/m8/feeds
另请参阅
getContactsByCompany(query)
getContactsByCompany(query)
已弃用。此函数已弃用,不应在新脚本中使用。
获取与公司字段匹配的联系人。
// The code below returns an array of contacts where the contact's company field // contains "Google". var contacts = ContactsApp.getContactsByCompany('Google');
参数
名称 | 类型 | 说明 |
---|---|---|
query | String | 联系人的公司字段中要搜索的字符串 |
返回
- 匹配的联系人数组Contact[]
授权
使用此方法的脚本需要获得以下一个或多个范围的授权:
-
https://www.google.com/m8/feeds
另请参阅
getContactsByCustomField(query, label)
getContactsByCustomField(query, label)
已弃用。此函数已弃用,不应在新脚本中使用。
获取与自定义字段中的指定值匹配的联系人。
自定义字段可以由字符串指定,也可以指定为 ContactsApp.ExtendedField 中的一个 值。
// The code below returns an array of contacts where the contact's custom field // named "Favorite Sport" contains "tennis". var contacts = ContactsApp.getContactsByCustomField('tennis', 'Favorite Sport');
参数
名称 | 类型 | 说明 |
---|---|---|
query | Object | 要在联系人的自定义字段中搜索的字符串 |
label |
| 要在其中进行搜索的自定义字段 |
返回
- 匹配的联系人数组Contact[]
授权
使用此方法的脚本需要获得以下一个或多个范围的授权:
-
https://www.google.com/m8/feeds
另请参阅
getContactsByDate(month, day, label)
getContactsByDate(month, day, label)
已弃用。此函数已弃用,不应在新脚本中使用。
获取与特定标准字段的指定月份和日期匹配的联系人。
// The code below returns an array of contacts where the contact's "Birthday" field // contains April for the month and 19 for the day. var contacts = ContactsApp.getContactsByDate(ContactsApp.Month.APRIL, 19, ContactsApp.Field.BIRTHDAY);
参数
名称 | 类型 | 说明 |
---|---|---|
month | Month | 要匹配的月份,作为 ContactsApp.Month 中的一个值 |
day | Integer | 匹配日期 |
label |
| 要在其中进行搜索的字段(来自 ContactsApp.Field) |
返回
- 匹配的联系人数组Contact[]
授权
使用此方法的脚本需要获得以下一个或多个范围的授权:
-
https://www.google.com/m8/feeds
另请参阅
getContactsByDate(month, day, year, label)
getContactsByDate(month, day, year, label)
已弃用。此函数已弃用,不应在新脚本中使用。
获取与特定标准字段的指定年份、月份和日期匹配的联系人。
// The code below returns an array of contacts where the contact's "Birthday" field // contains April for the month, 19 for the day, and 1950 for the year. var contacts = ContactsApp.getContactsByDate(ContactsApp.Month.APRIL, 19, 1950, ContactsApp.Field.BIRTHDAY);
参数
名称 | 类型 | 说明 |
---|---|---|
month | Month | 要匹配的月份,作为 ContactsApp.Month 中的一个值 |
day | Integer | 匹配日期 |
year | Integer | 要匹配的年份,可以为 null |
label |
| 要在其中进行搜索的字段(来自 ContactsApp.Field) |
返回
- 匹配的联系人数组Contact[]
授权
使用此方法的脚本需要获得以下一个或多个范围的授权:
-
https://www.google.com/m8/feeds
另请参阅
getContactsByDate(month, day, year, label)
getContactsByDate(month, day, year, label)
已弃用。此函数已弃用,不应在新脚本中使用。
获取与特定自定义字段的指定年份、月份和日期匹配的联系人。
// The code below returns an array of contacts where the contact's custom "Start Date" field // contains April for the month, 19 for the day, and 2011 for the year. var contacts = ContactsApp.getContactsByDate(ContactsApp.Month.APRIL, 19, 2011, 'Start Date');
参数
名称 | 类型 | 说明 |
---|---|---|
month | Month | 要匹配的月份,作为 ContactsApp.Month 中的一个值 |
day | Integer | 匹配日期 |
year | Integer | 要匹配的年份,可以为 null |
label | String | 要在其中进行搜索的自定义字段 |
返回
- 匹配的联系人数组Contact[]
授权
使用此方法的脚本需要获得以下一个或多个范围的授权:
-
https://www.google.com/m8/feeds
另请参阅
getContactsByDate(month, day, label)
getContactsByDate(month, day, label)
已弃用。此函数已弃用,不应在新脚本中使用。
获取与特定自定义字段的指定月份和日期匹配的联系人。
// The code below returns an array of contacts where the contact's custom "Start Date" field // contains April for the month and 19 for the day. var contacts = ContactsApp.getContactsByDate(ContactsApp.Month.APRIL, 19, 'Start Date');
参数
名称 | 类型 | 说明 |
---|---|---|
month | Month | 要匹配的月份,作为 ContactsApp.Month 中的一个值 |
day | Integer | 匹配日期 |
label | String | 要在其中进行搜索的自定义字段 |
返回
- 匹配的联系人数组Contact[]
授权
使用此方法的脚本需要获得以下一个或多个范围的授权:
-
https://www.google.com/m8/feeds
另请参阅
getContactsByEmailAddress(query)
getContactsByEmailAddress(query)
已弃用。此函数已弃用,不应在新脚本中使用。
获取与电子邮件地址匹配的联系人。
// The code below returns an array of contacts where the contact's email address contains // "john.doe@example.com'. var contacts = ContactsApp.getContactsByEmailAddress('john.doe@example.com');
参数
名称 | 类型 | 说明 |
---|---|---|
query | String | 要在联系人电子邮件地址中搜索的字符串 |
返回
- 匹配的联系人数组Contact[]
授权
使用此方法的脚本需要获得以下一个或多个范围的授权:
-
https://www.google.com/m8/feeds
另请参阅
getContactsByEmailAddress(query, label)
getContactsByEmailAddress(query, label)
已弃用。此函数已弃用,不应在新脚本中使用。
获取与电子邮件地址匹配的联系人(仅限特定字段)。
// The code below returns an array of contacts where the contact's email address contains // "john.doe@example.com" in the Home email field. var contacts = ContactsApp.getContactsByEmailAddress('john.doe@example.com', ContactsApp.Field.HOME_EMAIL);
参数
名称 | 类型 | 说明 |
---|---|---|
query | String | 要在联系人电子邮件地址中搜索的字符串 |
label |
| 要在其中进行搜索的字段 |
返回
- 匹配的联系人数组Contact[]
授权
使用此方法的脚本需要获得以下一个或多个范围的授权:
-
https://www.google.com/m8/feeds
另请参阅
getContactsByEmailAddress(query, label)
getContactsByEmailAddress(query, label)
已弃用。此函数已弃用,不应在新脚本中使用。
获取与电子邮件地址相匹配的联系人(仅限使用指定的自定义电子邮件地址标签)。
// The code below returns an array of contacts where the contact's email address contains // "john.doe@example.com" in a custom email address label (created by the user) called // "alternate". var contacts = ContactsApp.getContactsByEmailAddress('john.doe@example.com', 'alternate');
参数
名称 | 类型 | 说明 |
---|---|---|
query | String | 要在联系人电子邮件地址中搜索且具有指定自定义值的字符串 电子邮件地址标签 |
label | String | 要搜索的自定义电子邮件地址标签 |
返回
- 匹配的联系人数组Contact[]
授权
使用此方法的脚本需要获得以下一个或多个范围的授权:
-
https://www.google.com/m8/feeds
另请参阅
getContactsByGroup(group)
getContactsByGroup(group)
已弃用。此函数已弃用,不应在新脚本中使用。
获取给定 ContactGroup 中的联系人。
// The code below returns an array of contacts in the ContactGroup with the name // "Work Friends". var group = ContactsApp.getContactGroup('Work Friends'); var contacts = ContactsApp.getContactsByGroup(group);
参数
名称 | 类型 | 说明 |
---|---|---|
group |
| 联系人群组 |
返回
- 指定组中的联系人数组Contact[]
授权
使用此方法的脚本需要获得以下一个或多个范围的授权:
-
https://www.google.com/m8/feeds
另请参阅
getContactsByIM(query)
getContactsByIM(query)
已弃用。此函数已弃用,不应在新脚本中使用。
获取与即时通讯地址匹配的联系人。
// The code below returns an array of contacts where the contact's instant messaging address // contains "ChatWithJohnDoe" in any instant messaging field. var contacts = ContactsApp.getContactsByIM('ChatWithJohnDoe');
参数
名称 | 类型 | 说明 |
---|---|---|
query | String | 要在联系人的即时消息通讯地址中搜索的字符串 |
返回
- 匹配的联系人数组Contact[]
授权
使用此方法的脚本需要获得以下一个或多个范围的授权:
-
https://www.google.com/m8/feeds
另请参阅
getContactsByIM(query, label)
getContactsByIM(query, label)
已弃用。此函数已弃用,不应在新脚本中使用。
获取与即时通讯地址匹配的联系人(仅限于特定字段)。
// The code below returns an array of contacts where the contact's instant messaging address // contains "ChatWithJohnDoe" in the AIM instant messaging field. var contacts = ContactsApp.getContactsByIM('ChatWithJohnDoe', ContactsApp.Field.AIM);
参数
名称 | 类型 | 说明 |
---|---|---|
query | String | 要在联系人的即时消息通讯地址中搜索的字符串 |
label |
| 要搜索的字段 |
返回
- 匹配的联系人数组Contact[]
授权
使用此方法的脚本需要获得以下一个或多个范围的授权:
-
https://www.google.com/m8/feeds
另请参阅
getContactsByIM(query, label)
getContactsByIM(query, label)
已弃用。此函数已弃用,不应在新脚本中使用。
获取与即时通讯地址匹配的联系人(仅限于指定的自定义免安装应用) 消息标签。
// The code below returns an array of contacts where the contact's instant messaging address // contains "ChatWithJohnDoe" in a custom instant messaging label (created by the user) called // "eBuddy". var contacts = ContactsApp.getContactsByIM('ChatWithJohnDoe', 'eBuddy');
参数
名称 | 类型 | 说明 |
---|---|---|
query | String | 要在联系人的即时通讯地址中搜索的字符串,其中包含 指定的自定义即时消息标签 |
label | String | 要在其中进行搜索的自定义即时消息标签 |
返回
- 匹配的联系人数组Contact[]
授权
使用此方法的脚本需要获得以下一个或多个范围的授权:
-
https://www.google.com/m8/feeds
另请参阅
getContactsByJobTitle(query)
getContactsByJobTitle(query)
已弃用。此函数已弃用,不应在新脚本中使用。
获取与职位字段匹配的联系人。
// The code below returns an array of contacts where the contact's job title field // contains "Product Manager". var contacts = ContactsApp.getContactsByJobTitle('Product Manager');
参数
名称 | 类型 | 说明 |
---|---|---|
query | String | 要在联系人的职位字段中搜索的字符串 |
返回
- 匹配的联系人数组Contact[]
授权
使用此方法的脚本需要获得以下一个或多个范围的授权:
-
https://www.google.com/m8/feeds
另请参阅
getContactsByName(query)
getContactsByName(query)
已弃用。此函数已弃用,不应在新脚本中使用。
获取与某个姓名相符的联系人。
// The code below returns an array of contacts where the contact name contains "John" var contacts = ContactsApp.getContactsByName('John');
参数
名称 | 类型 | 说明 |
---|---|---|
query | String | 要在联系人姓名中搜索的字符串 |
返回
- 匹配的联系人数组Contact[]
授权
使用此方法的脚本需要获得以下一个或多个范围的授权:
-
https://www.google.com/m8/feeds
另请参阅
getContactsByName(query, label)
getContactsByName(query, label)
已弃用。此函数已弃用,不应在新脚本中使用。
获取与特定字段相符的联系人。
// The code below returns an array of contacts where the contact name contains "John" // in the Given Name field. var contacts = ContactsApp.getContactsByName('John', ContactsApp.Field.GIVEN_NAME);
参数
名称 | 类型 | 说明 |
---|---|---|
query | String | 要在联系人姓名中搜索的字符串 |
label |
| 要搜索的字段 |
返回
- 匹配的联系人数组Contact[]
授权
使用此方法的脚本需要获得以下一个或多个范围的授权:
-
https://www.google.com/m8/feeds
另请参阅
getContactsByNotes(query)
getContactsByNotes(query)
已弃用。此函数已弃用,不应在新脚本中使用。
获取与备注字段匹配的联系人。
// The code below returns an array of contacts where the contact's notes field // contains "sent birthday card". var contacts = ContactsApp.getContactsByNotes('sent birthday card');
参数
名称 | 类型 | 说明 |
---|---|---|
query | String | 要在联系人的备注字段中搜索的字符串 |
返回
- 匹配的联系人数组Contact[]
授权
使用此方法的脚本需要获得以下一个或多个范围的授权:
-
https://www.google.com/m8/feeds
另请参阅
getContactsByPhone(query)
getContactsByPhone(query)
已弃用。此函数已弃用,不应在新脚本中使用。
获取与电话号码匹配的联系人。
此方法会将带字母的电话号码展开,因此如果您搜索“212-555-CODE”和 电话号码是“212-555-2633”(反之亦然),该方法会找到合适的 联系。
// The code below returns an array of contacts where the contact's phone number contains // "212-555-1234' in any phone number field. var contacts = ContactsApp.getContactsByPhone('212-555-1234');
参数
名称 | 类型 | 说明 |
---|---|---|
query | String | 要在联系人的电话号码中搜索的字符串 |
返回
- 匹配的联系人数组Contact[]
授权
使用此方法的脚本需要获得以下一个或多个范围的授权:
-
https://www.google.com/m8/feeds
另请参阅
getContactsByPhone(query, label)
getContactsByPhone(query, label)
已弃用。此函数已弃用,不应在新脚本中使用。
获取与电话号码匹配的联系人(仅限特定字段)。
此方法会将带字母的电话号码展开,因此如果您搜索“212-555-CODE”和 电话号码是“212-555-2633”(反之亦然),该方法会找到合适的 联系。
// The code below returns an array of contacts where the contact's phone number contains // "212-555-1234" in the Home phone number field. var contacts = ContactsApp.getContactsByPhone('212-555-1234', ContactsApp.Field.HOME_PHONE);
参数
名称 | 类型 | 说明 |
---|---|---|
query | String | 要在联系人的电话号码中搜索的字符串 |
label |
| 要搜索的字段 |
返回
- 匹配的联系人数组Contact[]
授权
使用此方法的脚本需要获得以下一个或多个范围的授权:
-
https://www.google.com/m8/feeds
另请参阅
getContactsByPhone(query, label)
getContactsByPhone(query, label)
已弃用。此函数已弃用,不应在新脚本中使用。
获取与电话号码匹配的联系人(仅限指定的自定义电话号码标签)。
此方法会将带字母的电话号码展开,因此如果您搜索“212-555-CODE”和 电话号码是“212-555-2633”(反之亦然),该方法会找到合适的 联系。
// The code below returns an array of contacts where the contact's phone number contains // "212-555-1234" in a custom phone number label (created by the user) called // "alternate". var contacts = ContactsApp.getContactsByPhone('212-555-1234', 'alternate');
参数
名称 | 类型 | 说明 |
---|---|---|
query | String | 要在联系人的电话号码中搜索的字符串,具有指定的自定义 电话号码标签 |
label | String | 要在其中进行搜索的自定义电话号码标签 |
返回
- 匹配的联系人数组Contact[]
授权
使用此方法的脚本需要获得以下一个或多个范围的授权:
-
https://www.google.com/m8/feeds
另请参阅
getContactsByUrl(query)
getContactsByUrl(query)
已弃用。此函数已弃用,不应在新脚本中使用。
获取与某个网址匹配的联系人。
// The code below returns an array of contacts where the contact's URL contains // "www.example.com' in any URL field. var contacts = ContactsApp.getContactsByUrl('www.example.com');
参数
名称 | 类型 | 说明 |
---|---|---|
query | String | 要在联系人的网址中搜索的字符串 |
返回
- 匹配的联系人数组Contact[]
授权
使用此方法的脚本需要获得以下一个或多个范围的授权:
-
https://www.google.com/m8/feeds
另请参阅
getContactsByUrl(query, label)
getContactsByUrl(query, label)
已弃用。此函数已弃用,不应在新脚本中使用。
获取与网址匹配的联系人(仅限特定字段)。
// The code below returns an array of contacts where the contact's URL contains // "www.example.com" in the Work URL field. var contacts = ContactsApp.getContactsByUrl('www.example.com', ContactsApp.Field.WORK_WEBSITE);
参数
名称 | 类型 | 说明 |
---|---|---|
query | String | 要在联系人的网址中搜索的字符串 |
label |
| 要在其中进行搜索的字段 |
返回
- 匹配的联系人数组Contact[]
授权
使用此方法的脚本需要获得以下一个或多个范围的授权:
-
https://www.google.com/m8/feeds
另请参阅
getContactsByUrl(query, label)
getContactsByUrl(query, label)
已弃用。此函数已弃用,不应在新脚本中使用。
获取与网址相匹配的联系人(仅限于使用指定的自定义网址标签)。
// The code below returns an array of contacts where the contact's URL contains // "www.example.com" in a custom URL label (created by the user) called // "alternate work". var contacts = ContactsApp.getContactsByUrl('www.example.com', 'alternate work');
参数
名称 | 类型 | 说明 |
---|---|---|
query | String | 要在联系人的网址中搜索具有指定自定义网址标签的字符串 |
label | String | 要在其中进行搜索的自定义网址标签 |
返回
- 匹配的联系人数组Contact[]
授权
使用此方法的脚本需要获得以下一个或多个范围的授权:
-
https://www.google.com/m8/feeds