简体   繁体   中英

Load More from Google API RSS Feed

I'm building an RSS Feed Reader using this tutorial here: https://www.thepolyglotdeveloper.com/2014/09/create-an-rss-reader-using-angularjs-and-ionicframework/

Using the Google feed API is there any way to load more results from the source?

You can set the parameter

num The number of entries to return. Default is 4 and maximum is 100

Something like this

$http.get("http://ajax.googleapis.com/ajax/services/feed/load", { params: { "v": "1.0", "q": "http://blog.nraboy.com/feed/", "num": "100" } })

How many entries does the source publish? The feed API can't display more than there are available.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM