从 Google API RSS Feed 加载更多内容
Load More from Google API RSS Feed
我正在使用这里的教程构建一个 RSS 订阅阅读器:https://www.thepolyglotdeveloper.com/2014/09/create-an-rss-reader-using-angularjs-and-ionicframework/
使用 Google 提要 API 是否有任何方法可以从源加载更多结果?
可以设置参数
num The number of entries to return. Default is 4 and maximum is 100
像这样
$http.get("http://ajax.googleapis.com/ajax/services/feed/load", { params: { "v": "1.0", "q": "http://blog.nraboy.com/feed/", "num": "100" } })
来源发布了多少条目?供稿 API 显示的数量不能超过可用数量。
我正在使用这里的教程构建一个 RSS 订阅阅读器:https://www.thepolyglotdeveloper.com/2014/09/create-an-rss-reader-using-angularjs-and-ionicframework/
使用 Google 提要 API 是否有任何方法可以从源加载更多结果?
可以设置参数
num The number of entries to return. Default is 4 and maximum is 100
像这样
$http.get("http://ajax.googleapis.com/ajax/services/feed/load", { params: { "v": "1.0", "q": "http://blog.nraboy.com/feed/", "num": "100" } })
来源发布了多少条目?供稿 API 显示的数量不能超过可用数量。