我使用.net從我的Google聯繫人中檢索聯繫人信息。但是,它將檢索所有包含未存儲在「我的聯繫人」中的已發送電子郵件。無論如何,我只能從我的聯繫人中檢索聯繫人嗎?檢索谷歌聯繫人
下面是代碼
RequestSettings rs = new RequestSettings("", email, password);
rs.AutoPaging = true;
ContactsRequest cr = new ContactsRequest(rs);
Feed<Contact> Contacts = cr.GetContacts();
foreach (Contact contact in Contacts.Entries)
{
Name name = contact.Name;
Response.Write(name.GivenName + " " + name.FamilyName + "<br/>");
foreach (EMail emailId in contact.Emails)
{
Response.Write(emailId.Address + "<br/>");
}
Response.Write("<br/>");
}
請發表你已經嘗試過...我指的是代碼 –
代碼嵌入 – RoyT
好吧,它有什麼問題?根據我的理解,它檢索得太多了嗎? –