我正在尝试使用google API 3.0获取所有用户详细信息的用户联系人。 我能够通过用户的详细信息获得JSON响应。
$url = 'https://www.google.com/m8/feeds/contacts/default/full?max-results='.$max_results.'&alt=json&v=3.0&oauth_token='.$accesstoken;
结果是
[entry] => Array
(
[0] => Array
(
[id] => Array
(
[$t] => http://www.google.com/m8/feeds/contacts/sfdhitdf1%40gmail.com/base/1
)
[gd$etag] => "RXc7fTVSLit7I2A9XRZaEkoLRAw."
[updated] => Array
(
[$t] => 2014-08-29T00:16:24.905Z
)
[app$edited] => Array
(
[xmlns$app] => http://www.w3.org/2007/app
[$t] => 2014-08-29T00:16:24.905Z
)
[category] => Array
(
[0] => Array
(
[scheme] => http://schemas.google.com/g/2005#kind
[term] => http://schemas.google.com/contact/2008#contact
)
)
[title] => Array
(
[$t] => abc
)
[link] => Array
(
[0] => Array
(
[rel] => http://schemas.google.com/contacts/2008/rel#photo
[type] => image
[href] => https://www.google.com/m8/feeds/photos/media/sachdfwdfd%40gmail.com/1?v=3.0
[gd$etag] => "VWVIH3oyWit7I2B0UBRURzwNBWM8ODs8cSk."
)
[1] => Array
(
[rel] => self
[type] => application/atom+xml
[href] => https://www.google.com/m8/feeds/contacts/sachitdff%40gmail.com/full/1?v=3.0
)
[2] => Array
(
[rel] => edit
[type] => application/atom+xml
[href] => https://www.google.com/m8/feeds/contacts/sachidtfd%40gmail.com/full/1?v=3.0
)
)
[gd$name] => Array
(
[gd$fullName] => Array
(
[$t] => abc xyz
)
[gd$givenName] => Array
(
[$t] => abc
)
[gd$familyName] => Array
(
[$t] => xyz
)
)
[gd$email] => Array
(
[0] => Array
(
[address] => abi9@gmail.com
[primary] => true
[rel] => http://schemas.google.com/g/2005#other
)
)
[gContact$website] => Array
(
[0] => Array
(
[href] => http://www.google.com/profiles/104048264070958665151
[rel] => profile
)
)
[gContact$groupMembershipInfo] => Array
(
[0] => Array
(
[deleted] => false
[href] => http://www.google.com/m8/feeds/groups/sachitaware
)
)
但是在这里我没有得到用户的联系人图片。documentation说我需要一个联系人ID 来获取照片,但我没有得到上面的回复中的联系人ID。如何获取用户的联系人ID以及随后的联系人照片?
我已经使用oauth 2.0授权了应用程序,除了图像之外,我获得了联系人的大部分细节。
编辑:我从文档中尝试this方式并且它可以正常工作,但它会返回二进制图像而不是图像网址,我必须发送另一个获取图像的请求。
$url1 ='https://www.google.com/m8/feeds/photos/media/{useremail}/13444? v=3.0&oauth_token='.$accesstoken;
$xmlresponse1 = curl($url1);
显示图像:
<img src="data:image/*;base64,<?php echo base64_encode($xmlresponse1); ?> />
我不能获得像facebook返回的联系人图片网址吗?
答案 0 :(得分:2)
根据文档,API返回的联系人条目URL中返回contactIid
:
http://www.google.com/m8/feeds/contacts/<userEmail>/base/<contactId>
所以,提供样品:
http://www.google.com/m8/feeds/contacts/sfdhitdf1%40gmail.com/base/1
我们有这些价值观:
userEmail: sfdhitdf1@gmail.com
contactId: 1