user1003210
user1003210

Reputation: 1

Google Reader API choose to get only elements from x position to n position

I use this request

http://www.google.com/reader/atom/%@?trans=true&n=20

Note: %@ is the URL of a feed source

to get the first 20 entries from that source (%@). My question is this... is it possible to get only feeds from 10 to 20 for example? If it is possible which is the query?

Upvotes: 0

Views: 59

Answers (1)

Mihai Parparita
Mihai Parparita

Reputation: 4236

There is no mechanism for using offsets (10 to 20 in your example) in Google Reader feed response. Instead you'll need to use continuation tokens as described in this answer.

Upvotes: 0

Related Questions