已弃用的媒体资源
属性 | 类型 | 说明 |
---|---|---|
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". const 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" const 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. const 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" const 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". const 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" const id = 'http://www.google.com/m8/feeds/contacts/john.doe%40example.com/base/7c86afde08d34c'; const contact = ContactsApp.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" const 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" const id = 'http://www.google.com/m8/feeds/groups/john.doe%40example.com/base/54eefbb093fdecb'; const 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. const groups = ContactsApp.getContactGroups(); for (let 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'. const 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. const 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". const 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". const 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". const 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. const 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. const 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. const 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. const 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'. const 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. const 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". const 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". const group = ContactsApp.getContactGroup('Work Friends'); const 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. const 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. const 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". const 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". const 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" const 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. const 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". const 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. const 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. const 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". const 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. const 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. const 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". const contacts = ContactsApp.getContactsByUrl( 'www.example.com', 'alternate work', );
参数
名称 | 类型 | 说明 |
---|---|---|
query | String | 要在包含指定自定义网址标签的联系人网址中搜索的字符串 |
label | String | 要搜索的自定义网址标签 |
返回
- 匹配联系人的数组Contact[]
授权
使用此方法的脚本需要获得以下一个或多个范围的授权:
-
https://www.google.com/m8/feeds