เลิกใช้งานแล้ว แต่ให้ใช้ 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
— ที่อยู่เป็นสตริง
การให้สิทธิ์
สคริปต์ที่ใช้เมธอดนี้ต้องมีการให้สิทธิ์กับขอบเขตต่อไปนี้อย่างน้อย 1 รายการ
-
https://www.google.com/m8/feeds
getLabel()
รับป้ายกำกับสำหรับช่องนี้ ซึ่งอาจเป็นฟิลด์, ExtendedField หรือสตริง
// 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
— ป้ายกำกับสำหรับช่องนี้
การให้สิทธิ์
สคริปต์ที่ใช้เมธอดนี้ต้องมีการให้สิทธิ์กับขอบเขตต่อไปนี้อย่างน้อย 1 รายการ
-
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
— เป็นแอปพลิเคชันหลักหรือไม่
การให้สิทธิ์
สคริปต์ที่ใช้เมธอดนี้ต้องมีการให้สิทธิ์กับขอบเขตต่อไปนี้อย่างน้อย 1 รายการ
-
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 | ที่อยู่ใหม่ |
รีเทิร์น
— ช่องนี้เหมาะสำหรับการทำห่วงโซ่IMField
การให้สิทธิ์
สคริปต์ที่ใช้เมธอดนี้ต้องมีการให้สิทธิ์กับขอบเขตต่อไปนี้อย่างน้อย 1 รายการ
-
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();
รีเทิร์น
— FieldValue นี้สำหรับการทำเชนIMField
การให้สิทธิ์
สคริปต์ที่ใช้เมธอดนี้ต้องมีการให้สิทธิ์กับขอบเขตต่อไปนี้อย่างน้อย 1 รายการ
-
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 |
| ป้ายกำกับมาตรฐานใหม่ |
รีเทิร์น
— FieldValue นี้สำหรับการทำเชนIMField
การให้สิทธิ์
สคริปต์ที่ใช้เมธอดนี้ต้องมีการให้สิทธิ์กับขอบเขตต่อไปนี้อย่างน้อย 1 รายการ
-
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 | ป้ายกำกับใหม่สำหรับฟิลด์นี้ |
รีเทิร์น
— ช่องนี้เหมาะสำหรับการทำห่วงโซ่IMField
การให้สิทธิ์
สคริปต์ที่ใช้เมธอดนี้ต้องมีการให้สิทธิ์กับขอบเขตต่อไปนี้อย่างน้อย 1 รายการ
-
https://www.google.com/m8/feeds