Google通讯录API - 获取图片

时间:2013-10-16 12:11:20

标签: google-api google-contacts

我在检索用户的联系人图片时遇到了一个简单的问题。所以我向

提出请求
$url = 'https://www.google.com/m8/feeds/contacts/default/full?alt=json&max-results=9999&oauth_token=' . $accessToken;

然后我获得了巨大的JSON,我从中提取了全名和电子邮件。然后我尝试了联系人的形象,并没有取得任何成功。

我与所有联系人联系,每个人都有以下结构:

entry [id, updated, category, title, link, gd$email].

在链接部分,我有四个链接,其中前两个是图像内容的某种链接,但我无法检索它。

任何机构在做这种工作方面都取得了成功!?

Tnx很多!

顺便说一句:如果我的案例中的某些数据丢失了,请报告,我也会添加!

编辑:我还尝试使用网址

来覆盖图片
 http://profiles.google.com/s2/photos/profile/" + userid + "?sz=" + size;

但问题是我无法从联系人JSON获取userId。

2 个答案:

答案 0 :(得分:2)

答案 1 :(得分:-1)

如果提到的标签可用,请再次提出请求。

$add = new Google_HttpRequest("https://www.google.com/m8/feeds/contacts/default/full?alt=json&v=3.0&max-results=500&access_token='.$token->access_token");
$add->setRequestMethod("GET");
$add->setRequestHeaders(array('GData-Version' => '3.0', 'content-type' => 'application/atom+xml; charset=UTF-8; type=feed'));

$submit = $client->getIo()->authenticatedRequest($add);
$sub_response = $submit->getResponseBody();

$temp = json_decode($sub_response, true);

foreach ($temp['feed']['entry'] as $image) {
  $google_contact_id = $image['link'][2]['href'];
  if (isset($image['link'][0]['href'])) {
    $photo = new Google_HttpRequest($image['link'][0]['href']);
    $photo_val = $client->getIo()->authenticatedRequest($photo);

    $photo_return = $photo_val->getResponseBody();                       
    $imgData = base64_encode($photo_return);
    $pro_image = 'data:image/jpeg;base64, ' . $imgData . '';
  }
}