Bulk edit tag for Google Reader

How to massage edit tag of google reader element? Now I use / reader / api / 0 / edit-tag to edit tags, but it’s very slow to update tags for all elements (in a loop).

Yes, do you know a way to send tags for many products at once? A possible solution is like using some threads to send these requests to Google Reader Server.

+4
source share
2 answers

You can include multiple i = and s = in the same entry. just make sure that when adding a new i = you will add the corresponding s = for this element , even if you already included s = for the same stream earlier (is this really important or when making a call you will get 400 error). I made batches of 10 with my code, I'm sure you can do more, but I do not know the limit.

+2
source

Can a working URL for marking all the items that will be read be published?

I tried:

<?php echo 'http://www.google.com/reader/api/0/edit-tag?'.'s=feed%2F'.urlencode('http://feeds.feedburner.com/filehippo').'&i='.urlencode('tag:google.com,2005:reader/item/c7701cf414f3539e').'&a=user%2F-%2Flabel%2Fread'.'&T=bbi44C5CQzjzM43yKUPwnA'; ?> 

but I just get 400 error.

Thank you very much.

+1
source

All Articles