tags:

views:

352

answers:

1

Does anybody know how to remove stars for articles starred in Google Reader using its unofficial API?

I found this one but it doesn't work:

http://www.niallkennedy.com/blog/2005/12/google-reader-api.html

Neither does the pyrfeed module in Python, I get the IOError exception every time.

+1  A: 

Try using:

r=user%2F[user ID]%2Fstate%2Fcom.google%2Fstarred

instead of

a=user%2F[user ID]%2Fstate%2Fcom.google%2Fstarred

when invoking edit-tag.

bdonlan
I had a look at the Google's code with Web Developer plugin for Mozilla. It looks like that:http://www.google.com/reader/api/0/edit-tag?client=scrollSID=%s;Domain=.google.com;Path=/;Expires=160000000000' % SIDmaybe I'm missing something here...
Bartek