我正在尝试通过我的 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 联系人。