5

我在检索用户联系人的图像时遇到了一个简单的问题。所以我提出要求

$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].

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

任何机构都成功地完成了这种工作!?

很多!

BTW:如果我的案例中的某些数据丢失,请报告,我也会添加它!

编辑:我也尝试使用 URL 访问图像

 http://profiles.google.com/s2/photos/profile/" + userid + "?sz=" + size;

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

4

2 回答 2

3

您必须调用照片端点并将有效的访问令牌作为查询参数附加到它。

例子:

https://www.google.com/m8/feeds/photos/media/name.surname%40gmail.com/0?access_token=ACCESS_TOKEN

文件:

https://developers.google.com/google-apps/contacts/v3/#contact_photo_management

于 2015-02-16T14:43:54.020 回答
-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 . '';
  }
}
于 2015-02-26T12:12:57.723 回答