首页
学习
活动
专区
圈层
工具
发布
社区首页 >问答首页 >地址和名称字段无法使用Gmail

地址和名称字段无法使用Gmail
EN

Stack Overflow用户
提问于 2015-10-07 01:54:48
回答 1查看 264关注 0票数 0

我正在使用高级REST客户端进行测试,并在php代码中进行了测试。

here is the link

我正在尝试在Gmail创建联系人,一切正常,但地址没有插入,甚至没有名字。即使我使用与文档中相同的XML

代码语言:javascript
复制
<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>

它仍然没有添加地址和姓名,我担心这是谷歌正在努力的东西吗?

我看过这些问题

代码语言:javascript
复制
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

如果这是正在开发的东西,有谁能解释清楚吗?

谢谢

EN

回答 1

Stack Overflow用户

发布于 2015-10-08 00:37:57

经过40个小时的努力,我终于找到了答案,你需要在标题中指定这个

代码语言:javascript
复制
gdata-version: 3.0

Google也应该为PHP更新他们的API细节。

希望这对未来的伙伴有所帮助。

票数 2
EN
页面原文内容由Stack Overflow提供。腾讯云小微IT领域专用引擎提供翻译支持
原文链接:

https://stackoverflow.com/questions/32976445

复制
相关文章

相似问题

领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档