2013-03-11 161 views
3

我正在使用Google Contacts API v3文檔,OAuth Playground 2.0。Google Contact API v3 - 創建聯繫人時無法創建名稱/標題

我可以通過獲取請求拉取所有聯繫人。我可以使用POST創建一個新的聯繫人,但似乎無法填充名稱字段等等。電子郵件和電話號碼填充正常。

我一直在使用Contacts API v3 doc中的請求正文中的atom/xml,如下所示。

<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> 

任何幫助非常感謝,謝謝。

回答

4

我也被這個刺痛了。我忽略了這個HTTP頭添加到請求:

GData-Version: 3.0 

v3之前,要註明名稱的方式是<atom:title>Full Name</atom:title>,而不是<gd:name>...</gd:name>。但我想最好只添加標題。