在我的MVC(C#)网站上,用户可以使用他们的OAuth凭据登录并从他们的谷歌联系人下载电子邮件ID。 我使用以下代码: -
ContactsRequest cr = new ContactsRequest(settings);
ContactsQuery query = new ContactsQuery(ContactsQuery.CreateContactsUri("default"));
query.NumberToRetrieve = 10;
query.StartIndex = 1;
如上所述 -
https://developers.google.com/google-apps/contacts/v3/
但是,超时了。我有近3000个联系人,查询试图下载所有3000个联系人(我可以在调试for循环时看到它)。 如何使下载更快? 感谢