14

问题

谁能指点我一步一步的例子来解释如何开始使用 Google Contacts API 并展示一个完整的工作演示?

最好使用 Java,但也可以使用 C#、Python 或 Ruby。

目标

我想做的就是

  1. 加载现有联系人,
  2. 将其添加到组中并
  3. 保存联系人。

问题

我几乎在每个级别上都失败了。

  • 无法使身份验证正常工作
  • 找不到包含我在 Internet 上找到的代码片段中使用的类的库
  • 无法对现有联系人执行 CRUD 操作

例子

这是我正在寻找的一些伪代码。

import com.google.contacts.*

public class UpdateContactDemo {

   public static void main(String args[]) {
      GoogleContactsApi g = new GoogleContactsApi("username", "password");
      Contact c = g.get("Bob");
      c.addGroup("Friends");
      g.save(c);
   }
}

我已经做过的

好的,我在谷歌上搜索了教程、API 示例和我能想到的所有其他东西——但失败了。我找到了一堆这样的来源:

但非包含初学者的端到端示例。

4

1 回答 1

1

我的 C# 方法是这样的:

http://nanovazquez.com/2013/01/18/working-with-google-calendar-on-dotnet/

代码可以在github上找到:这里

<?xml version="1.0" encoding="utf-8"?>
<configuration>
  ...
  <appSettings>
    ...
    <!-- GoogleAPI credentials -->
    <add key="ClientId" value="{CLIENT-ID}" />
    <add key="ClientSecret" value="{CLIENT-SECRETD}" />

    <!-- Update the port of the Redirect URI (don't forget to set this value also in the Google API Console) -->
      <add key="RedirectUri" value="http://localhost:{PORT}/Account/GoogleAuthorization" />
  </appSettings>
  <system.web>
  ...
</configuration>
</xml>

您可以删除现有的 Google Calendar api 并添加 Google Contacts Api。

试试这个。

这具有 Oauth 实现和工作原理,但来自 code.google.com 的代码示例没有。

是迄今为止我发现的最好的。

于 2014-07-24T14:46:57.627 回答