승인 필요
인증된 사용자의 연락처 목록을 검색합니다. 예를 참조하세요.
요청
HTTP 요청
GET https://www.googleapis.com/mirror/v1/contacts
승인
이 요청을 처리하려면 다음 범위의 승인이 필요합니다 (인증 및 승인 자세히 알아보기).
| 범위 |
|---|
https://www.googleapis.com/auth/glass.timeline |
요청 본문
이 메소드를 사용할 때는 요청 본문을 제공하지 마세요.
응답
요청에 성공할 경우 이 메소드는 다음과 같은 구조의 응답 본문을 반환합니다.
{
"kind": "mirror#contacts",
"items": [
contacts Resource
]
}
| 속성 이름 | 값 | 설명 | 참고 |
|---|---|---|---|
kind |
string |
리소스 유형 항상 mirror#contacts입니다. |
|
items[] |
list |
연락처 목록. |
예
참고: 이 메서드에 제공되는 코드 예시가 지원되는 모든 프로그래밍 언어를 나타내는 것은 아닙니다. 지원되는 언어 목록은 클라이언트 라이브러리 페이지를 참조하세요.
자바
Java 클라이언트 라이브러리를 사용합니다.
import com.google.api.services.mirror.Mirror;
import com.google.api.services.mirror.model.Contact;
import com.google.api.services.mirror.model.ContactsListResponse;
import java.io.IOException;
public class MyClass {
// ...
/**
* Print all contacts for the current user.
*
* @param service Authorized Mirror service.
*/
public void printAllContacts(Mirror service) {
try {
ContactsListResponse contacts = service.contacts().list().execute();
for (Contact contact : contacts.getItems()) {
System.out.println("Contact ID: " + contact.getId());
System.out.println(" > displayName: " + contact.getDisplayName());
if (contact.getImageUrls() != null) {
for (String imageUrl : contact.getImageUrls()) {
System.out.println(" > imageUrl: " + imageUrl);
}
}
}
} catch (IOException e) {
System.err.println("An error occurred: " + e);
}
}
// ...
}
.NET
.NET 클라이언트 라이브러리를 사용합니다.
using System;
using Google.Apis.Mirror.v1;
using Google.Apis.Mirror.v1.Data;
public class MyClass {
// ...
/// <summary>
/// Print all contacts for the current user.
/// </summary>
/// <param name='service'>Authorized Mirror service.</param>
public static void PrintAllContacts(MirrorService service) {
try {
ContactsListResponse contacts =
service.Contacts.List().Fetch();
foreach (Contact contact in contacts.Items) {
Console.WriteLine("Contact ID: " + contact.Id);
Console.WriteLine(" > displayName: " + contact.DisplayName);
if (contact.ImageUrls != null) {
foreach (String imageUrl in contact.ImageUrls) {
Console.WriteLine(" > imageUrl: " + imageUrl);
}
}
}
} catch (Exception e) {
Console.WriteLine("An error occurred: " + e.Message);
}
}
// ...
}
PHP
PHP 클라이언트 라이브러리를 사용합니다.
/**
* Print all contacts for the current user.
*
* @param Google_MirrorService service Authorized Mirror service.
*/
function printAllContacts($service) {
try {
$contacts = $service->contacts->listContacts();
foreach ($contacts->getItems() as $contact) {
print 'Contact ID: ' . $contact->getId();
print ' > displayName: ' . $contact->getDisplayName();
if ($contact->getImageUrls() != null) {
foreach ($contact->getImageUrls() as $imageUrl) {
print ' > imageUrl: ' . $imageUrl;
}
}
}
} catch (Exception $e) {
print 'An error occurred: ' . $e->getMessage();
return null;
}
}
Python
Python 클라이언트 라이브러리를 사용합니다.
from apiclient import errors
# ...
def print_all_contacts(service):
"""Print all contacts for the current user.
Args:
service: Authorized Mirror service.
"""
try:
contacts = service.contacts().list().execute()
for contact in contacts.get('items', []):
print 'Contact ID: %s' % contact.get('id')
print ' > displayName: %s' % contact.get('displayName')
for image_url in contact.get('imageUrls', []):
print ' > imageUrl: %s' % image_url
except errors.HttpError, error:
print 'An error occurred: %s' % error
Ruby
##
# Print all contacts for the current user.
#
# @param [Google::APIClient] client
# Authorized client instance.
# @return nil
def print_all_contacts(client)
mirror = client.discovered_api('mirror', 'v1')
result = client.execute(:api_method => mirror.contacts.list)
if result.success?
contacts = result.data
contacts.items.each do |contact|
puts "Contact ID: #{contact.id}"
puts " > displayName: #{contact.display_name}"
contact['imageUrls'].each do |image_url|
puts " > imageUrl: #{image_url}"
end
end
else
puts "An error occurred: #{result.data['error']['message']}"
end
end
Go
Go 클라이언트 라이브러리를 사용합니다.
import (
"code.google.com/p/google-api-go-client/mirror/v1"
"fmt"
)
// PrintAllContacts prints all contacts for the current user.
func PrintAllContacts(g *mirror.Service) error {
s, err := g.Contacts.List().Do()
if err != nil {
fmt.Printf("An error occurred: %v\n", err)
return err
}
for _, st := range s.Items {
fmt.Printf("Contact ID: %s\n", st.Id)
fmt.Printf(" > displayName: %s\n", st.DisplayName)
for _, i := range st.ImageUrls {
fmt.Printf(" > imageUrl: %s\n", i)
}
}
return nil
}
원시 HTTP
클라이언트 라이브러리를 사용하지 않습니다.
GET /mirror/v1/contacts HTTP/1.1
Authorization: Bearer auth token