我正在使用google-api-php-client-0.6.0
实现gmail联系人提取if ($client->getAccessToken()) {
$req = new Google_HttpRequest("https://www.google.com/m8/feeds/contacts/default/full?max-results=9999&alt=json");
$val = $client->getIo()->authenticatedRequest($req);
// The contacts api only returns XML responses.
//$response = json_encode(simplexml_load_string($val->getResponseBody()));
print_r(json_decode($val->getResponseBody())) ;
// The access token may have been updated lazily.
$_SESSION['token'] = $client->getAccessToken();
}
使用此HTTprequest获取用户详细信息结果如下
[0] => stdClass Object
(
[id] => stdClass Object
(
[$t] => http://www.google.com/m8/feeds/contacts/sivagopaltech%40gmail.com/base/1301bd0ce878b5
)
[updated] => stdClass Object
(
[$t] => 2011-10-10T04:40:56.311Z
)
[category] => Array
(
[0] => stdClass Object
(
[scheme] => http://schemas.google.com/g/2005#kind
[term] => http://schemas.google.com/contact/2008#contact
)
)
[title] => stdClass Object
(
[type] => text
[$t] =>
)
[link] => Array
(
[0] => stdClass Object
(
[rel] => http://schemas.google.com/contacts/2008/rel#edit-photo
[type] => image/*
[href] => https://www.google.com/m8/feeds/photos/media/sivagopaltech%40gmail.com/1301bd0ce878b5/1B2M2Y8AsgTpgAmY7PhCfg
)
[1] => stdClass Object
(
[rel] => self
[type] => application/atom+xml
[href] => https://www.google.com/m8/feeds/contacts/sivagopaltech%40gmail.com/full/1301bd0ce878b5
)
[2] => stdClass Object
(
[rel] => edit
[type] => application/atom+xml
[href] => https://www.google.com/m8/feeds/contacts/sivagopaltech%40gmail.com/full/1301bd0ce878b5/1318221656311001
)
)
[gd$email] => Array
(
[0] => stdClass Object
(
[rel] => http://schemas.google.com/g/2005#other
[address] => jagadeesh.miriyala@gmail.com
[primary] => true
)
)
)
其中$ t和其他人在我看来是出乎意料的,在这种情况下我得到了用户邮件
当我更改代码和httpRequest时,如下所示,我只获取用户名不是emailid
if ($client->getAccessToken()) {
$req = new Google_HttpRequest("https://www.google.com/m8/feeds/contacts/default/full?max-results=9999");
$val = $client->getIo()->authenticatedRequest($req);
// The contacts api only returns XML responses.
$response = json_encode(simplexml_load_string($val->getResponseBody()));
print_r(json_decode($response)) ;
// The access token may have been updated lazily.
$_SESSION['token'] = $client->getAccessToken();
}
用户详细信息格式如下
[title] => 96 76 36 78 07 chakri // username
[link] => Array
(
[0] => stdClass Object
(
[@attributes] => stdClass Object
(
[rel] => http://schemas.google.com/contacts/2008/rel#edit-photo
[type] => image/*
[href] => https://www.google.com/m8/feeds/photos/media/sivagopaltech%40gmail.com/826b6c0fa89181/a9haUsi43SXQrgy78Gjg4Q
)
)
[1] => stdClass Object
(
[@attributes] => stdClass Object
(
[rel] => http://schemas.google.com/contacts/2008/rel#photo
[type] => image/*
[href] => https://www.google.com/m8/feeds/photos/media/sivagopaltech%40gmail.com/826b6c0fa89181
)
)
[2] => stdClass Object
(
[@attributes] => stdClass Object
(
[rel] => self
[type] => application/atom+xml
[href] => https://www.google.com/m8/feeds/contacts/sivagopaltech%40gmail.com/full/826b6c0fa89181
)
)
[3] => stdClass Object
(
[@attributes] => stdClass Object
(
[rel] => edit
[type] => application/atom+xml
[href] => https://www.google.com/m8/feeds/contacts/sivagopaltech%40gmail.com/full/826b6c0fa89181/1349307874947993
)
)
)
)
任何人都可以建议我如何避免这些$ t变量或如何使用第二个httprequest获取emailid
答案 0 :(得分:1)
问题是simplexml如何格式化响应。它删除了电子邮件字段。在api调用结束时添加“?alt = json”,它将返回一个json。 json_decode响应,你将有一个很好的PHP对象与电子邮件