2015-10-06 32 views
0

我正在使用Advance REST CLIENT进行测试,并在php代码中对其进行了测试。地址和名称字段不工作Gmail

here is the link

我想创建的Gmail联系人,一切工作正常,但该地址没有被插入,而不是连名字。即使我使用作为存在于文档

<atom:entry xmlns:atom="http://www.w3.org/2005/Atom" 
    xmlns:gd="http://schemas.google.com/g/2005"> 
    <atom:category scheme="http://schemas.google.com/g/2005#kind" 
    term="http://schemas.google.com/contact/2008#contact"/> 
    <gd:name> 
    <gd:givenName>Elizabeth</gd:givenName> 
    <gd:familyName>Bennet</gd:familyName> 
    <gd:fullName>Elizabeth Bennet</gd:fullName> 
    </gd:name> 
    <atom:content type="text">Notes</atom:content> 
    <gd:email rel="http://schemas.google.com/g/2005#work" 
    primary="true" 
    address="[email protected]" displayName="E. Bennet"/> 
    <gd:email rel="http://schemas.google.com/g/2005#home" 
    address="[email protected]"/> 
    <gd:phoneNumber rel="http://schemas.google.com/g/2005#work" 
    primary="true"> 
    (206)555-1212 
    </gd:phoneNumber> 
    <gd:phoneNumber rel="http://schemas.google.com/g/2005#home"> 
    (206)555-1213 
    </gd:phoneNumber> 
    <gd:im address="[email protected]" 
    protocol="http://schemas.google.com/g/2005#GOOGLE_TALK" 
    primary="true" 
    rel="http://schemas.google.com/g/2005#home"/> 
    <gd:structuredPostalAddress 
     rel="http://schemas.google.com/g/2005#work" 
     primary="true"> 
    <gd:city>Mountain View</gd:city> 
    <gd:street>1600 Amphitheatre Pkwy</gd:street> 
    <gd:region>CA</gd:region> 
    <gd:postcode>94043</gd:postcode> 
    <gd:country>United States</gd:country> 
    <gd:formattedAddress> 
     1600 Amphitheatre Pkwy Mountain View 
    </gd:formattedAddress> 
    </gd:structuredPostalAddress> 
</atom:entry> 

相同的XML仍然没有添加地址和名字,恐怕如果这是什么谷歌正在开发?

我看到这些问题

http://stackoverflow.com/questions/20761210/google-contacts-api-not-adding-name-and-address-in-google-contact 

http://stackoverflow.com/questions/20761210/google-contacts-api-not-adding-name-and-address-in-google-contact 

https://github.com/google/gdata-java-client/issues/153 

任何人谁可以在其上阐明,如果这是正在开发的东西?

感谢,因为40小时这种挣扎后

回答

1

大,我能找到答案,你需要在头

gdata-version: 3.0 

谷歌应该更新PHP的API细节太注明。

希望这有助于未来的研究人员。

相关问题