Hi everyone,

i am using google-API (in PHP) to retrieve  contacts information from 
google account. 
But i can not retrieve <gd:extendedProperty> from account. I thought, if i 
am using "full", all of properties should be returned?
I have already read the reference many times, still can not find a single 
clue, why i can not get the custom-properties. 
I preciate, if somebody could provide some advice for me. Thanks a lot. 

if ($client->getAccessToken()) {
    
    $head = array();
    $head[0]="GET /m8/feeds/contacts/default/full/676d81880c24a582";
    $head[1]="If-Match: *";
    $head['content-type']='application/atom+xml';
    $head['charset']='UTF-8';
    
    $req = new 
apiHttpRequest("https://www.google.com/m8/feeds/contacts/default/full/676d81880c24a582";);
    $req->setRequestMethod('GET');
    $req->setRequestHeaders($head);
    $val = $client->getIo()->authenticatedRequest($req);
 
 

-- 
You received this message because you are subscribed to the Google
Groups "Google Contacts, Shared Contacts and User Profiles APIs" group.
To post to this group, send email to
[email protected]
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://code.google.com/apis/contacts/community/forum.html

Reply via email to