Apps Script 已於 2022 年 12 月 16 日淘汰聯絡人服務。請改用 People API 進階服務。People API 採用較新的 JSON 通訊協定,並提供進階功能,例如將聯絡人與設定檔合併。
您可以透過本指南瞭解哪些聯絡人服務方法在 People API 進階服務中沒有對應項目,瞭解可替代的方法,並找到用於遷移常見工作的程式碼範例。詳情請參閱 Contacts API 遷移指南。
沒有 People API 對應項目的方法
下表列出聯絡人服務中的 getContacts 方法,這些方法在 People API 進階服務中沒有等同的聯絡人搜尋方式。使用 People API 進階服務時,您可以根據聯絡人的 names、nickNames、emailAddresses、phoneNumbers 和 organizations 欄位進行搜尋,這些欄位來自 CONTACT 來源。
沒有對應方法
getContactsByAddress(query)
getContactsByAddress(query, label)
getContactsByAddress(query, label)
getContactsByCustomField(query, label)
getContactsByDate(month, day, label)
getContactsByDate(month, day, year, label)
getContactsByDate(month, day, year, label)
getContactsByIM(query)
getContactsByIM(query, label)
getContactsByJobTitle(query)
getContactsByNotes(query)
getContactsByUrl(query)
getContactsByUrl(query, label)
getContactsByGroup(group)
以下列出使用額外 label 參數的聯絡人服務 getContacts 方法。您可以使用 People API 進階服務的 searchContacts,根據等效欄位取得聯絡人,但無法將搜尋範圍限制在特定標籤。
部分對等方法
getContactsByEmailAddress(query, label)
getContactsByName(query, label)
getContactsByPhone(query, label)
People API 提供的其他功能
遷移至 People API 進階服務後,您可以使用下列 People API 功能,這些功能在聯絡人服務中無法使用:
指定資料來源:搜尋某人相關資訊時,您可以指定搜尋位置,例如 Google 聯絡人或 Google 個人資料。
/** * Gets a contact group with the given name * @param {string} name The group name. * @see https://developers.google.com/people/api/rest/v1/contactGroups/list */functiongetContactGroup(name){try{constpeople=People.ContactGroups.list();// Finds the contact group for the person where the name matches.constgroup=people['contactGroups'].find((group)=>group['name']===name);// Prints the contact groupconsole.log('Group:%s',JSON.stringify(group,null,2));}catch(err){// TODO (developers) - Handle exceptionconsole.log('Failedtogetthecontactgroupwithanerror%s',err.message);}}
/** * Gets a contact by the email address. * @param {string} email The email address. * @see https://developers.google.com/people/api/rest/v1/people.connections/list */functiongetContactByEmail(email){try{// Gets the person with that email address by iterating over all contacts.constpeople=People.People.Connections.list('people/me',{personFields:'names,emailAddresses'});constcontact=people['connections'].find((connection)=>{returnconnection['emailAddresses'].some((emailAddress)=>emailAddress['value']===email);});// Prints the contact.console.log('Contact:%s',JSON.stringify(contact,null,2));}catch(err){// TODO (developers) - Handle exceptionconsole.log('Failedtogettheconnectionwithanerror%s',err.message);}}
/** * Gets a list of people in the user's contacts. * @see https://developers.google.com/people/api/rest/v1/people.connections/list */functiongetConnections(){try{// Get the list of connections/contacts of user's profileconstpeople=People.People.Connections.list('people/me',{personFields:'names,emailAddresses'});// Print the connections/contactsconsole.log('Connections:%s',JSON.stringify(people,null,2));}catch(err){// TODO (developers) - Handle exception hereconsole.log('Failedtogettheconnectionwithanerror%s',err.message);}}
/** * Gets the full name (given name and last name) of the contact as a string. * @see https://developers.google.com/people/api/rest/v1/people/get */functiongetFullName(){try{// Gets the person by specifying resource name/account ID// in the first parameter of People.People.get.// This example gets the person for the user running the script.constpeople=People.People.get('people/me',{personFields:'names'});// Prints the full name (given name + family name)console.log(`${people['names'][0]['givenName']}${people['names'][0]['familyName']}`);}catch(err){// TODO (developers) - Handle exceptionconsole.log('Failedtogettheconnectionwithanerror%s',err.message);}}
/** * Gets all the phone numbers for this contact. * @see https://developers.google.com/people/api/rest/v1/people/get */functiongetPhoneNumbers(){try{// Gets the person by specifying resource name/account ID// in the first parameter of People.People.get.// This example gets the person for the user running the script.constpeople=People.People.get('people/me',{personFields:'phoneNumbers'});// Prints the phone numbers.console.log(people['phoneNumbers']);}catch(err){// TODO (developers) - Handle exceptionconsole.log('Failedtogettheconnectionwithanerror%s',err.message);}}
/** * Gets a phone number by type, such as work or home. * @see https://developers.google.com/people/api/rest/v1/people/get */functiongetPhone(){try{// Gets the person by specifying resource name/account ID// in the first parameter of People.People.get.// This example gets the person for the user running the script.constpeople=People.People.get('people/me',{personFields:'phoneNumbers'});// Gets phone number by type, such as home or work.constphoneNumber=people['phoneNumbers'].find((phone)=>phone['type']==='home')['value'];// Prints the phone numbers.console.log(phoneNumber);}catch(err){// TODO (developers) - Handle exceptionconsole.log('Failedtogettheconnectionwithanerror%s',err.message);}}
[[["容易理解","easyToUnderstand","thumb-up"],["確實解決了我的問題","solvedMyProblem","thumb-up"],["其他","otherUp","thumb-up"]],[["缺少我需要的資訊","missingTheInformationINeed","thumb-down"],["過於複雜/步驟過多","tooComplicatedTooManySteps","thumb-down"],["過時","outOfDate","thumb-down"],["翻譯問題","translationIssue","thumb-down"],["示例/程式碼問題","samplesCodeIssue","thumb-down"],["其他","otherDown","thumb-down"]],["上次更新時間:2024-12-21 (世界標準時間)。"],[[["The Apps Script Contacts service is being shut down on January 31, 2025, and scripts should be migrated to the People API advanced service."],["The People API advanced service offers enhanced features like merging contacts with profiles and searching by various contact fields."],["Some Contacts service methods have no direct equivalents in the People API, requiring alternative approaches for searching contacts."],["The People API provides additional features including specifying data sources, searching by query strings, and batching requests."],["Code samples are available to help developers migrate common tasks from the Contacts service to the People API advanced service."]]],[]]