Google通讯录下载即将推出

时间:2016-08-18 06:04:53

标签: c# android asp.net-mvc google-contacts google-api-dotnet-client

在我的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循环时看到它)。 如何使下载更快? 感谢

0 个答案:

没有答案