הוצא משימוש. במקום זאת, כדאי להשתמש ב-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()
קבלת התווית של השדה הזה. השדה הזה יכול להיות שדה, 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
– התווית של השדה הזה
אישור
סקריפטים שמשתמשים בשיטה הזו מחייבים הרשאה עם אחד או יותר מהיקפי ההרשאות הבאים:
-
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();
חזרה
– ה-FieldValue הזה לשרשורUrlField
אישור
סקריפטים שמשתמשים בשיטה הזו מחייבים הרשאה עם אחד או יותר מהיקפי ההרשאות הבאים:
-
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 הזה לשרשורUrlField
אישור
סקריפטים שמשתמשים בשיטה הזו מחייבים הרשאה עם אחד או יותר מהיקפי ההרשאות הבאים:
-
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