5

How can I get the latest N posts from blogger RSS feed, using the URL in a browser, or some javascript? Which parameter do I have to use?

1 Answers1

4

According to the Developers Guide: Protocol for Google's Blogger API, the query parameter to be used is max-results, like this:

http://www.blogger.com/feeds/blogID/posts/default?max-results=N

Where blogID is the blog ID number, and N is the number of posts to retrieve. The posts are ordered by last modified by default.