how come i cant grab all rss items from a feed

A

Adam Akhtar

When i try and access the bbc feed it will only return the latest 40
results. However if i use the same feed in google reader, it can return
a lot more. Why is this and how do i modify the code below so that i can
return more results.

Heres some code

require 'rss/1.0'
require 'rss/2.0'
require 'open-uri'
require 'rss/parser'


source =
"http://newsrss.bbc.co.uk/rss/newsonline_world_edition/uk_news/rss.xml"
# url or local file
content = "" # raw content of rss feed will be loaded here
open(source) do |s| content = s.read end
rss = RSS::parser.parse(content, false)

(rss.items.length == 40ish)
 
B

Ben Lovell

[Note: parts of this message were removed to make it a legal post.]

I'd suggest you check which headers your browser is sending. Particularly
the Last-Modified and Etag. Replicate those and you will see the same amount
of items.
Ben
 
A

Adam Akhtar

hi ben, thanks for the reply. Im a bit confused though.

When i type the address into the browser it shows 40 items just as the
code above does.

When i access the feed via google reader it shows more. I wondering what
magic google is using to get more items than my browser or my rss code
can.
 
S

Snaury Miyoto

Adam said:
When i access the feed via google reader it shows more. I wondering what
magic google is using to get more items than my browser or my rss code
can.

I think this could be because google caches items internally, from the
moment someone subscribes to the feed for the first time. Then it just
periodically updates the feed and caches new items. To simulate google
behavior you would need to go back in time and start fetching items from
the moment you need.

Unless there's some api on the feed itself, in which case you'd have to
ask owners of the feed.
 
B

Ben Lovell

[Note: parts of this message were removed to make it a legal post.]
When i access the feed via google reader it shows more. I wondering what
magic google is using to get more items than my browser or my rss code
can.
Ah I have to admit I glossed over the fact you were using Google Reader. As
Snaury said, they would certainly employ caching at their end which should
display results beyond the ones you are seeing.

Ben
 
A

Adam Akhtar

ahhh thank you for confirming my suspicions. Customized Deloreans with
flux capacitors are a bit hard to come by these days so I guess ill have
to settle with 40 a day.

Thank you for your help!
 
B

Ben Lovell

[Note: parts of this message were removed to make it a legal post.]

If it is utterly important you _could_ possibly use the google reader api to
get at those entries. Might be a little easier than going back in time ;)
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

No members online now.

Forum statistics

Threads
473,756
Messages
2,569,540
Members
45,025
Latest member
KetoRushACVFitness

Latest Threads

Top