创建谷歌网上论坛联系人



我正在尝试使用Google通讯录v3创建群组联系人。

按照示例并在 OAuth 2.0 操场中进行测试,以下是我的示例代码:

POST /m8/feeds/groups/default/full/ HTTP/1.1
Host: www.google.com
Gdata-version: 3.0
Content-length: 355
Content-type: application/atom+xml
Authorization: Bearer #{auth_code_goes_in_here}#
<atom:entry 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#group"/>
  <atom:title type="text">Salsa group</atom:title>
  <gd:extendedProperty name="more info about the group">
    <info>Nice people.</info>
  </gd:extendedProperty>
</atom:entry>

但是,我在响应中不断收到 400 错误:

HTTP/1.1 400 Bad Request
Alternate-protocol: 443:quic,p=1
Content-length: 236
X-xss-protection: 1; mode=block
X-content-type-options: nosniff
Transfer-encoding: chunked
Expires: Fri, 11 Mar 2016 05:18:06 GMT
Vary: Origin, X-Origin
Server: GSE
-content-encoding: gzip
Cache-control: private, max-age=0
Date: Fri, 11 Mar 2016 05:18:06 GMT
X-frame-options: SAMEORIGIN
Alt-svc: quic=":443"; ma=2592000; v="31,30,29,28,27,26,25"
Content-type: application/vnd.google.gdata.error+xml; charset=UTF-8
<?xml version="1.0" encoding="UTF-8"?>
<errors xmlns="http://schemas.google.com/g/2005">
 <error>
  <domain>GData</domain>
  <code>invalid</code>
  <internalReason>Entry does not have any fields set</internalReason>
 </error>
</errors>

知道我在这里做错了什么吗?

此外,我想在Google中创建联系人,并附有特定的组。这可以通过"创建联系人"方法实现吗?我似乎找不到可以直接为其指定组的示例。

感谢您的任何建议。

问候乐 华

经过一些痛苦的研究,我通过将数据从以下位置更改来找到解决方案:

<atom:entry xmlns:gd="http://schemas.google.com/g/2005">
to
<atom:entry xmlns:atom="http://www.w3.org/2005/Atom" xmlns:gd="http://schemas.google.com/g/2005">

相关内容

  • 没有找到相关文章

最新更新