回答編集履歴

2

脱文修正

2021/06/23 09:30

投稿

wefee
wefee

スコア5

test CHANGED
@@ -24,9 +24,11 @@
24
24
 
25
25
  });
26
26
 
27
- var name = people.results[0].person.names[0].familyName; //苗字
27
+ var name = people.results[0].person.names[0].familyName; //苗字
28
28
 
29
+ var address = people.results[0].person.emailAddresses[0].value; //メールアドレス
30
+
29
- var office = people.results[0].person.organizations[0].name; //組織
31
+ var org = people.results[0].person.organizations[0].name; //組織
30
32
 
31
33
  }
32
34
 

1

書式改善

2021/06/23 09:30

投稿

wefee
wefee

スコア5

test CHANGED
@@ -1,6 +1,6 @@
1
1
  サービスからPeopleAPIを追加して…というご回答を頂いたので、
2
2
 
3
- こちらの[リファレンス](https://developers.google.com/people/api/rest/v1/people/searchContacts)を参考にコードを書き直してみました。
3
+ [こちらのリファレンス](https://developers.google.com/people/api/rest/v1/people/searchContacts)を参考にコードを書き直してみました。
4
4
 
5
5
  ContactAppよりかなり速いですね。
6
6