如何更改 dotNetOpenAuth GoogleAddressBook 示例以检索超过 25 个联系人?

发布于 2024-09-03 22:08:33 字数 384 浏览 7 评论 0原文

您建议我如何继续更改 GoogleAddressBook 示例以检索 > 25 个联系人?

Google 建议在 http://code.google 上使用 AutoPaging=true .com/apis/contacts/docs/2.0/developers_guide_dotnet.html#retriving_without_query

如果这仍然有效,我该如何在提供的 DotNetOpenAuth 示例中传递此参数?

How do you suggest I proceed in changing the GoogleAddressBook sample to retrieve > 25 contacts?

Google suggests using AutoPaging=true on http://code.google.com/apis/contacts/docs/2.0/developers_guide_dotnet.html#retrieving_without_query

If this is still valid, how can I go about passing this parameter in the DotNetOpenAuth sample provided?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

迎风吟唱 2024-09-10 22:08:33

AutoPaging 属性就是:一个属性。它不是查询参数,除非您使用 Google .NET 库(据我所知,该库不使用 OAuth),否则该属性不可用。

最新版本的 Google 通讯录协议文档状态:

注意:提要可能不包含用户的所有联系人,因为返回的结果数量有默认限制。有关详细信息,请参阅检索联系人中的 max-results 查询参数使用查询参数

另一个文档页面解释了还有一个 start-index 参数,因此您仍然可以一次检索联系人块(如果您愿意)。

因此,您所需要做的就是在发送的请求中添加 ?max-results=500 或其他一些大数字。我已经更新了 DotNetOpenAuth 示例以简化此操作。

The AutoPaging property is just that: a property. It isn't a query parameter, and this property isn't available unless you're using the Google .NET library (which to my knowledge doesn't use OAuth).

The latest version of the protocol documentation for Google Contacts states:

Note: The feed may not contain all of the user's contacts, because there's a default limit on the number of results returned. For more information, see the max-results query parameter in Retrieving contacts using query parameters.

Another documentation page explains that there is also a start-index parameter, so you can still retrieve blocks of contacts at a time if you so choose.

So it looks like all you need to do is add ?max-results=500 or some other high number to the request you send out. I've updated the DotNetOpenAuth sample to make this easy.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文