google-reader

Google Reader Authentication problem

三世轮回 提交于 2019-11-27 14:12:25
问题 Google Reader API Seems expecting something different for authentication today! About a week ago, I downloaded this, and everything is working and I try to port that to java. For my code, it is working perfectly (with the help on your examples) until today. I stack tracing everything and I found out that suddenly the google reader is not accepting only SID as the cookie. And of course, I test run your sample application as well and it is not working as well. Then I went to tamper the data of

Google Reader API Unread Count

浪尽此生 提交于 2019-11-26 23:48:03
问题 Does Google Reader have an API and if so, how can I get the count of the number of unread posts for a specific user knowing their username and password? 回答1: This URL will give you a count of unread posts per feed. You can then iterate over the feeds and sum up the counts. http://www.google.com/reader/api/0/unread-count?all=true Here is a minimalist example in Python...parsing the xml/json and summing the counts is left as an exercise for the reader: import urllib import urllib2 username =