Note that there are some explanatory texts on larger screens.

plurals
  1. PO
    text
    copied!<p>Fortunately, I found the solution to my problem after a lot of research:</p> <blockquote> <ul> <li><p>A url in this form returns the most recent N items of the RSS Feed</p> <p>http://www.google.com/reader/atom/feed/[RSS]?n=[N]</p> <p>[N] = Number of items to be displayed (max: 1000).</p> <p>[RSS] = The url for the rss feed.</p></li> <li><p>To get the next N older items, another parameter called <strong>Continuation String</strong> should be used. It can be found inside <strong>gr:continuation</strong> tag in each results' page. So, To get the N older items, a url in this form should be used:</p> <p>http://www.google.com/reader/atom/feed/[RSS]?n=[N]&amp;c=[C]</p> <p>[N] = Number of items to be displayed (max: 1000).</p> <p>[RSS] = The url for the rss feed.</p> <p>[C] = Continuation string</p></li> </ul> </blockquote> <p><strong>Example:</strong></p> <blockquote> <ul> <li><p>Let's say we are interested to get results from <a href="http://www.360cities.net/rss/area/north-america.rss" rel="nofollow">http://www.360cities.net/rss/area/north-america.rss</a></p></li> <li><p>To get newest 1000 item of this rss feed, The url to be used should look like:</p> <p><a href="http://www.google.com/reader/atom/feed/http://www.360cities.net/rss/area/north-america.rss?n=1000" rel="nofollow">http://www.google.com/reader/atom/feed/http://www.360cities.net/rss/area/north-america.rss?n=1000</a></p></li> <li><p>To get the next older 1000 items, We should first search in the first result page and find the <strong>Continuation String</strong>. In this case the Continuation String is <strong>COnu-r7znpsC</strong> (it may be different when you view this post). Then, the url to be used should look like:</p> <p><a href="http://www.google.com/reader/atom/feed/http://www.360cities.net/rss/area/north-america.rss?n=1000&amp;c=COnu-r7znpsC" rel="nofollow">http://www.google.com/reader/atom/feed/http://www.360cities.net/rss/area/north-america.rss?n=1000&amp;c=COnu-r7znpsC</a></p></li> <li><p>To get the next older 1000 items, repeat the same process by finding the new <strong>Continuation String</strong>, etc...</p></li> <li><p>If no Continuation String was found, this means that no more items are available.</p></li> </ul> </blockquote> <p>I hope this would help someone.</p> <p>Thanks</p>
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload