如何通过 Google 联系人 API 创建新联系人?
How to create a new contact via Google Contacts API?
我正在创建一个新联系人,如 Google Contacts API 中所述。具体来说,我做了一个 POST
到 https://www.google.com/m8/feeds/contacts/default/full
。我POST
的内容直接取自Google联系人API文档,也复制在下面。
问题是 Google 将新创建的联系人放在 "Other Contacts" 下。也就是说,如果我在浏览器中打开 https://contacts.google.com/,则不会显示新联系人。我必须转到左侧的侧边栏,单击 "More",然后单击 "Other Contacts"。
如何以编程方式创建联系人,以便我可以直接在 https://contacts.google.com/ 中看到它而无需转到 "Other Contacts"?
<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="liz@gmail.com" displayName="E. Bennet"/>
<gd:email rel="http://schemas.google.com/g/2005#home"
address="liz@example.org"/>
<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="liz@gmail.com"
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>
首先,我建议确保您发送了包含 header GData-Version: 3.0 的授权请求。
https://www.google.com/m8/feeds/groups/default/full
成功的请求将 return 组列表,'My Contacts' 包括在内。
使用 'My Contacts' 的 groupId,您现在可以 change the Group Membership of that contact。
查看 this google forum 了解更多信息。
我正在创建一个新联系人,如 Google Contacts API 中所述。具体来说,我做了一个 POST
到 https://www.google.com/m8/feeds/contacts/default/full
。我POST
的内容直接取自Google联系人API文档,也复制在下面。
问题是 Google 将新创建的联系人放在 "Other Contacts" 下。也就是说,如果我在浏览器中打开 https://contacts.google.com/,则不会显示新联系人。我必须转到左侧的侧边栏,单击 "More",然后单击 "Other Contacts"。
如何以编程方式创建联系人,以便我可以直接在 https://contacts.google.com/ 中看到它而无需转到 "Other Contacts"?
<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="liz@gmail.com" displayName="E. Bennet"/>
<gd:email rel="http://schemas.google.com/g/2005#home"
address="liz@example.org"/>
<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="liz@gmail.com"
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>
首先,我建议确保您发送了包含 header GData-Version: 3.0 的授权请求。
https://www.google.com/m8/feeds/groups/default/full
成功的请求将 return 组列表,'My Contacts' 包括在内。
使用 'My Contacts' 的 groupId,您现在可以 change the Group Membership of that contact。
查看 this google forum 了解更多信息。