查询联系人时,我使用下面的代码检索我的所有联系人
$gdata = new Zend_Gdata($client);
$gdata->setMajorProtocolVersion(3);
$query = new Zend_Gdata_Query(
"http://www.google.com/m8/feeds/contacts/default/full");
$feed = $gdata->getFeed($query);
当我查看 $feed 的每个条目时,我可以访问 contactId,并且根据 Contacts API,我应该能够通过在以下 URL 上执行 GET 来检索图片:
http://www.google.com/m8/feeds/photos/media/default/contactId
所以我使用相同的机制来检索联系人并在设置 $id 后尝试获取照片:
$query = new Zend_Gdata_Query(
"http://www.google.com/m8/feeds/photos/media/default/$id");
$entryFeed = $gdata->getFeed($query);
但我收到一个错误“DOMDocument 无法解析 XML”。难道我做错了什么?有没有示例文档?