syhuro
syhuro

Reputation: 335

Getting a full RSS feed

I'm testing a feed which I plan to later consume in my application. When viewing it in the browser, it shows only the last 7 items.

Upvotes: 1

Views: 794

Answers (2)

Artefacto
Artefacto

Reputation: 97835

Do feeds behave different when consumed from a program?

The browser is a program; technicalities aside, it's theoretically possible that a server would respond differently if the user agent was not a browser. It's not very likely though.

Check if the feed accepts a page url parameter or similar. If not, you'll have to find another feed.

Upvotes: 2

SLaks
SLaks

Reputation: 887451

Your RSS feed only contains seven items. (Browsers will not trim RSS feeds)

You need to find a bigger RSS feed.

Upvotes: 2

Related Questions