Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Multiple tags / folders in Google Reader

I want to be able to grab data from multiple tags / folders in a users Google Reader.

I know how to do one http://www.google.com/reader/atom/user/-/label/SOMELABEL but how would you do two or three or ten?

like image 387
daihovey Avatar asked May 12 '11 08:05

daihovey


1 Answers

Doesn't look like you can get multiple tags/folders in one request. If it's feasible you should iterate over the different tags/folders and aggregate them in your application.

[edit] Since it looks like you have a large list of tags/folders you need to query, an alternative is to get the full list of entries, then sort out the ones the user wants. It looks like each entry has a category element that will tell you what tag is associated with it. This might be feasible in your case.

(Source: http://code.google.com/p/pyrfeed/wiki/GoogleReaderAPI) (Source: http://www.google.com/reader/atom/user/-/state/com.google/starred)

like image 182
Perishable Dave Avatar answered Nov 04 '22 08:11

Perishable Dave