如何使用 Alexa API 增加 Alexa 搜索结果

发布于 2024-10-14 12:52:28 字数 1539 浏览 1 评论 0原文

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

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

发布评论

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

评论(1

我还不会笑 2024-10-21 12:52:28

如果您注意到,除了 Count 之外,还有一个 Start 参数。
Start 显然改变了返回的第一个结果数。因此:

要获得前 50 个答案:

...
&Start=1
&Count=50
...

要获得下一个 50 个答案:

...
&Start=51
&Count=50
...

依此类推,直到您得到空返回(这是当“开始 > 总共 # 个答案”时返回的内容)。

If you'll notice, there is a Start parameter in addition to Count.
Start evidently changes the first result number returned. So:

To get the first 50 answers:

...
&Start=1
&Count=50
...

To get the next 50:

...
&Start=51
&Count=50
...

And so forth, until you get an empty return (which is what is returned when Start > total # answers).

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