Google Contacts API - 获取生日的问题

发布于 2024-11-24 19:38:07 字数 249 浏览 1 评论 0原文

我能够从 https://www.google.com/m8/ 获取 Google 通讯录feeds/contacts/default/full

但不是生日。

我应该怎么做才能获得生日,我需要提供任何特殊许可或任何其他查询网址吗?

请帮忙...

提前致谢

Am able to get google contacts from https://www.google.com/m8/feeds/contacts/default/full

but not the birthday.

What should i do to get the birthday, do i need to provide any special permission or any other query url ?

Please help...

Thanks in advance

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

风渺 2024-12-01 19:38:07

我一直在使用 Google 数据提供程序,并相信这是实现您正在寻找的行为的最简单方法。它基本上是一个第三方工具,允许连接和访问数据,就像访问任何传统数据库一样。配置完成后,选择生日就像查询联系人表一样简单:

GoogleConnection connection = new GoogleConnection(connectionString);

GoogleCommand cmd = new GoogleCommand(
    "SELECT Birthday FROM Contacts where Contacts.Birthday >= @date", 
    connection);
cmd.Parameters.Add(new GoogleParameter("date", "4/3/1997"));

GoogleDataReader gdr = cmd.ExecuteReader();
while (gdr.Read())
{
    //any code
}

我发现这比其他方法容易得多。这是其网站的链接:Google 数据提供商

I have been using the Google data provider and believe it’s the easiest way to achieve the behavior you are looking for. It’s basically a third party tool that allows to connect and access data just as you would access any traditional database. After having configured it, selecting the birthday is as simple as querying the Contacts table:

GoogleConnection connection = new GoogleConnection(connectionString);

GoogleCommand cmd = new GoogleCommand(
    "SELECT Birthday FROM Contacts where Contacts.Birthday >= @date", 
    connection);
cmd.Parameters.Add(new GoogleParameter("date", "4/3/1997"));

GoogleDataReader gdr = cmd.ExecuteReader();
while (gdr.Read())
{
    //any code
}

I’ve found this a lot easier than other methods. This is the link to their site: Google Data Provider

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文