已弃用。请改用 People API 高级 服务
联系人中的网址字段。
方法
方法 | 返回类型 | 简介 |
---|---|---|
getAddress() | String | 获取此字段的地址。 |
getLabel() | Object | 获取此字段的标签。 |
isPrimary() | Boolean | 获取这是否为主要字段值。 |
setAddress(address) |
| 设置此字段的地址。 |
setAsPrimary() |
| 将此字段设置为主要字段。 |
setLabel(field) |
| 设置此字段的标签。 |
setLabel(label) |
| 设置此字段的标签。 |
详细文档
getAddress()
获取此字段的地址。
// Logs the address for the 'Home Address' field for contact 'John Doe'. // Can be used similarly for other fields that contain addresses. var contacts = ContactsApp.getContactsByName('John Doe'); var homeAddress = contacts[0].getAddresses(ContactsApp.Field.HOME_ADDRESS); Logger.log(homeAddress[0].getAddress());
返回
String
- 字符串形式的地址
授权
使用此方法的脚本需要获得以下一个或多个范围的授权:
-
https://www.google.com/m8/feeds
getLabel()
获取此字段的标签。此字段可以是 Field、ExtendedField 或 String。
// Logs the label for all the address fields associated with contact // 'John Doe'. This method can be similarly called for any field that has // a label. var contacts = ContactsApp.getContactsByName('John Doe'); var addressFields = contacts[0].getAddresses(); for (var i = 0; i < addressFields.length; i++) { Logger.log(addressFields[i].getLabel()); }
返回
Object
- 此字段的标签
授权
使用此方法的脚本需要获得以下一个或多个范围的授权:
-
https://www.google.com/m8/feeds
isPrimary()
获取这是否为主要字段值。
// Logs whether or not the first address field associated with contact // 'John Doe' is labeled as primary. This method can be similarly called // for any field. var contacts = ContactsApp.getContactsByName('John Doe'); var addressFields = contacts[0].getAddresses(); Logger.log(addressFields[0].isPrimary());
返回
Boolean
- 这是否为主要地理位置
授权
使用此方法的脚本需要获得以下一个或多个范围的授权:
-
https://www.google.com/m8/feeds
setAddress(address)
设置此字段的地址。
// Sets the address for the 'Home Address' field for contact 'John Doe'. // Can be used similarly for other fields that contain addresses. var contacts = ContactsApp.getContactsByName('John Doe'); var homeAddress = contacts[0].getAddresses(ContactsApp.Field.HOME_ADDRESS); homeAddress[0].setAddress('123 Main St, Raleigh, NC, 27601');
参数
名称 | 类型 | 说明 |
---|---|---|
address | String | 新地址 |
返回
- 此字段,可用于进行链接UrlField
授权
使用此方法的脚本需要获得以下一个或多个范围的授权:
-
https://www.google.com/m8/feeds
setAsPrimary()
将此字段设置为主要字段。
// Sets the the first address field associated with contact 'John Doe' // as primary. This method can be similarly called for any field. var contacts = ContactsApp.getContactsByName('John Doe'); var addressFields = contacts[0].getAddresses(); addressFields[0].setAsPrimary();
返回
- 用于链接的 FieldValueUrlField
授权
使用此方法的脚本需要获得以下一个或多个范围的授权:
-
https://www.google.com/m8/feeds
setLabel(field)
设置此字段的标签。
// Sets the label to 'Work' for the first address field associated // with contact 'John Doe'. This method can be similarly called for any // field that has a label. var contacts = ContactsApp.getContactsByName('John Doe'); var addressFields = contacts[0].getAddresses(); addressFields[0].setLabel(ContactsApp.Field.WORK_ADDRESS);
参数
名称 | 类型 | 说明 |
---|---|---|
field |
| 新的标准标签 |
返回
- 用于链接的 FieldValueUrlField
授权
使用此方法的脚本需要获得以下一个或多个范围的授权:
-
https://www.google.com/m8/feeds
setLabel(label)
设置此字段的标签。
// Sets the label to 'Apartment' for the first address field associated // with contact 'John Doe'. This method can be similarly called for any // field that has a label. var contacts = ContactsApp.getContactsByName('John Doe'); var addressFields = contacts[0].getAddresses(); addressFields[0].setLabel('Apartment');
参数
名称 | 类型 | 说明 |
---|---|---|
label | String | 此字段的新标签 |
返回
- 此字段,可用于进行链接UrlField
授权
使用此方法的脚本需要获得以下一个或多个范围的授权:
-
https://www.google.com/m8/feeds