我如何获取 Google 联系人的示例数据集,并填充其所有字段以测试我的项目?

How can i get sample dataset of Google contacts with all of its field populated to test my project?

这些是用于表示 google 联系人的几个字段。 https://developers.google.com/gdata/docs/2.0/elements?csw=1#gdContactKind, https://developers.google.com/google-apps/contacts/v3/reference

有什么方法可以让我获得可以导入到我的 gmail 帐户的此字段的示例数据集?

GData API 由 Google 联系人 API 使用(用于读取和写入)

您可以在这些文档上获得的数据集都是正确的。

我可以给你看一个为我工作的示例,用 atom:xml

编写
    <entry xmlns='http://www.w3.org/2005/Atom' xmlns:gd='http://schemas.google.com/g/2005'>
      <category scheme='http://schemas.google.com/g/2005#kind' 
          term='http://schemas.google.com/contact/2008#contact'/>
      <title>My Mail Contact</title>
      <gd:email rel='http://schemas.google.com/g/2005#work' primary='true' address='saurabh.agrawal@gmail.coom'/>
    </entry>