使用 ASIHTTPRequest 设置获取次数
我正在使用 ASIHTTPRequest
从 Google Feed API 获取数据。
现在它只获取 5 篇最新帖子,但我可以将其更改为更大的数字吗?
I'm using ASIHTTPRequest
to fetch data from an Google Feed API.
Right now it is only fetching 5 latest posts but can I change this to a larger number?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
来自 Google Feed API 的 JSON 开发人员指南:
您必须使用参数
num
来指定条目数。查询示例:
https://ajax.googleapis.com/ajax/services/feed/load?q=http://feeds.feedburner.com/TechCrunch&v=1.0&num=100
返回 100 个条目。
From the JSON Developer's Guide for the Google Feed API:
You have to use the parameter
num
to specify the number of entries.Example query:
https://ajax.googleapis.com/ajax/services/feed/load?q=http://feeds.feedburner.com/TechCrunch&v=1.0&num=100
That returns 100 entries.