0

我正在尝试通过我的 C# 应用程序中的 Google Contacts API 获取联系人列表。

以下是我用来提取 Google 联系人的代码,但不确定是否解析响应:

        OAuthGContacts _google = new OAuthGContacts();
        if (Request["code"] == null)
        {
            Response.Redirect(_google.AuthorizationLinkGet());

        }
        else
        {
              //Get the access token and secret.
            _google.AccessTokenGet(Request["code"]);

            if (_google.Token.Length > 0)
            {
             string   _contactResponse = _google.WebRequest(OAuthGContacts.Method.GET, "https://www.google.com/m8/feeds/contacts/default/full?access_token=" + _google.Token, string.Empty);
             XmlReader reader = XmlReader.Create(new StringReader(_contactResponse ));
             SyndicationFeed feed = SyndicationFeed.Load(reader);
             reader.Close();
            }
        }

请建议如何解析响应以提取 Google 联系人。

4

1 回答 1

1

您无需解析任何 XML 响应即可在 C# 应用程序中获取联系人列表。Google 的数据 API 提供了执行此操作的功能。是一个 .NET 示例。如果您看到协议,则只需单击 .NET 选项卡,您将看到以下代码

public static void PrintAllContacts(ContactsRequest cr)
{
  Feed<Contact> f = cr.GetContacts();
  foreach (Contact entry in f.Entries)
  ....
于 2012-07-09T16:44:17.900 回答