Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Google Reader Api mark All item As read

This is how my url looks be:

https://www.google.com/reader/api/0/mark-all-as-read?s=http://www.campionatoseriea.net&ts=1345114937

I can't understand why it doesn't work! I'm successfully logged in.

* EDIT *

https://www.google.com/reader/api/0/mark-all-as-read?s=feed/http://www.campionatoseriea.net/feed&ts=1346843394

I tried also this query but it doesn't work!

like image 741
Usi Usi Avatar asked Aug 16 '12 11:08

Usi Usi


2 Answers

Try including the token parameter (T).

https://www.google.com/reader/api/0/mark-all-as-read?s=feed/http://www.campionatoseriea.net/feed&ts=1346843394&T=//cDr2ct8ynZS2I-P4x4cn1A

This document describes how to get a token.

like image 130
Obaid Avatar answered Nov 15 '22 09:11

Obaid


?s=http://www.campionatoseriea.net

In the s you must pass the feed ID, not url. Here is example:

?s=feed/http://www.gsmarena.com/rss-news-reviews.php3
like image 27
DevFly Avatar answered Nov 15 '22 07:11

DevFly