연락처
연락처 목록을 조회하는 API예요. contacts 권한이 필요해요.
API
| API | 반환 타입 | 설명 |
|---|---|---|
AIT.FetchContacts() | ContactResult | 연락처 목록을 조회해요 |
FetchContacts
연락처 목록을 조회해요.
csharp
try
{
var result = await AIT.FetchContacts(new FetchContactsOptions
{
// 조회 옵션
});
Debug.Log($"연락처 조회 완료: {result}");
}
catch (AITException ex)
{
Debug.LogError($"연락처 조회 실패: {ex.Message}");
}