读取、复制和搜索“其他联系人”

完成准备使用 People API 中的步骤后,您就可以读取、复制和搜索“其他联系人”数据了。

以下代码示例演示了如何发送一些简单的请求。如需查看完整的方法列表,请参阅参考文档

列出用户的“其他联系人”

如需获取用户“其他联系人”中的人员列表,请使用以下代码:

协议Java
GET /v1/otherContacts?readMask=names,emailAddresses HTTP/1.1
Host: people.googleapis.com
ListOtherContactsResponse response = peopleService.otherContacts().list()
   
.setReadMask("metadata,names,emailAddresses")
   
.execute();

List<Person> otherContacts = response.getOtherContacts();

列出用户发生更改的“其他联系人”

Java
// Initial request
ListOtherContactsResponse fullSyncResponse = peopleService.otherContacts().list()
   
.setReadMask("metadata,names,emailAddresses")
   
.setRequestSyncToken(true)
   
.execute();
// Fetch all the pages
while (fullSyncResponse.getNextPageToken() != null) {
  fullSyncResponse
= peopleService.otherContacts().list()
     
.setReadMask("metadata,names,emailAddresses")
     
.setRequestSyncToken(true)
     
.setPageToken(fullSyncResponse.getNextPageToken())
     
.execute();
}

// Some time passes

// Fetch incremental changes using the sync token returned in the last fullSyncResponse.
try {
 
ListOtherContactsResponse incrementalSyncResponse = peopleService.otherContacts().list()
     
.setReadMask("metadata,names,emailAddresses")
     
.setSyncToken(fullSyncResponse.getNextSyncToken())
     
.execute();
 
for (Person person : incrementalSyncResponse.getOtherContacts()) {
    handlePerson
(person);
 
}
 
 
// Fetch all the pages
 
while (!incrementalSyncResponse.getNextPageToken().isEmpty()) {
    incrementalSyncResponse
= peopleService.otherContacts().list()
       
.setReadMask("metadata,names,emailAddresses")
       
.setSyncToken(fullSyncResponse.getNextSyncToken())
       
.setPageToken(incrementalSyncResponse.getNextPageToken())
       
.execute();
   
for (Person person : incrementalSyncResponse.getOtherContacts()) {
      handlePerson
(person);
   
}
 
}
} catch (GoogleJsonResponseException e) {
 
if (e.getStatusCode() == 410) {
   
// Sync token expired. Make full sync request.
 
}
}

void handlePerson(Person person) {
 
if (person.getMetadata().getDeleted()) {
   
// Handle deleted person
 
} else {
   
// Handle changed person
 
}
}

如需详细了解同步行为,请参阅 ListOtherContacts

将“其他联系人”复制到“myContacts”群组

如需将“其他联系人”复制到“myContacts”组,请使用以下代码:

协议Java
POST /v1/resource_name:copyOtherContactToMyContactsGroup?copyMask=names,emailAddresses,phoneNumbers HTTP/1.1
Host: people.googleapis.com
Person copiedContact = peopleService
   
.otherContacts()
   
.copyOtherContactToMyContactsGroup(
       
"resource_name",
       
new CopyOtherContactToMyContactsGroupRequest()
           
.setCopyMask("names,emailAddresses,phoneNumbers"))
   
.execute();

搜索用户的“其他联系人”

如需搜索用户的所有“其他联系人”,请使用以下代码:

协议Java
// Warmup cache
GET
/v1/otherContacts:search?query=&readMask=names,emailAddresses HTTP/1.1
Host: people.googleapis.com

// Send search request after several seconds
GET
/v1/otherContacts:search?query=query&readMask=names,emailAddresses HTTP/1.1
Host: people.googleapis.com
// Warmup cache
SearchResponse response = peopleService.otherContacts().search()
   
.setQuery("")
   
.setReadMask("names,emailAddresses")
   
.execute();

// Wait a few seconds
Thread.sleep(5);

// Send search request
SearchResponse response = peopleService.otherContacts().search()
   
.setQuery("query")
   
.setReadMask("names,emailAddresses")
   
.execute();