dsebastien / greader-unofficial

Automatically exported from code.google.com/p/greader-unofficial
GNU Lesser General Public License v3.0
0 stars 0 forks source link

Limitation of Search #3

Open GoogleCodeExporter opened 9 years ago

GoogleCodeExporter commented 9 years ago
What steps will reproduce the problem?
1. If you run the GoogleReader class and get the api (GoogleReaderDataProvides) 
and try to a 
getFeedItems(String,int) or something similar say via 
getReadItems(String,Integer) you will notice 
that there is a limit in the number of items outputted. I was not able to go 
beyond 1000 items. I 
noticed that Google Reader seems to have some limit built in it and is set to 
1000 I think by 
default. However, it is not clear how that limit might be reduced. So, if you 
put any number 
greater than 1000 in say getReadItems() then you will still only get the first 
1000 items.

What is the expected output? What do you see instead?

The expected output should be all the items you want back, including more than 
1000 items.

What version of the product are you using? On what operating system?

The current SVN version and I am using it on a MAC OSX.

Please provide any additional information below.

String item=reader.getApi().getFeedItems("feed/http://www.washingtonpost.com/wp-
dyn/rss/politics/index.xml",1000);  //will return 1000 items

String item=reader.getApi().getFeedItems("feed/http://www.washingtonpost.com/wp-
dyn/rss/politics/index.xml",1001);  //will still only return 1000 items, 
although you want 1001

Original issue reported on code.google.com by dinochri...@gmail.com on 19 Apr 2010 at 8:25

GoogleCodeExporter commented 9 years ago

Original comment by attila.b...@gmail.com on 27 Oct 2011 at 9:50