google-reader

How to mark items read with google reader API?

戏子无情 提交于 2019-12-01 05:25:41
I've been working on a client for google reader. Everything works fine, except that I can't edit entries to add tags such as "starred" and "read." The instructions at code.google.com/p/pyrfeed/wiki/GoogleReaderAPI and www.niallkennedy.com/blog/2005/12/google-reader-api.html seem to be outdated. What's more odd is that I've been inspecting the POST data that google itself uses and attempting to replicate it exactly, but I still can't get it to work. The closest I've come is, for example, http://www.google.com/reader/api/0/edit-tag with POST data a=/user/-/state/com.google/starred&async=true&s=

How to mark items read with google reader API?

眉间皱痕 提交于 2019-12-01 04:07:50
问题 I've been working on a client for google reader. Everything works fine, except that I can't edit entries to add tags such as "starred" and "read." The instructions at code.google.com/p/pyrfeed/wiki/GoogleReaderAPI and www.niallkennedy.com/blog/2005/12/google-reader-api.html seem to be outdated. What's more odd is that I've been inspecting the POST data that google itself uses and attempting to replicate it exactly, but I still can't get it to work. The closest I've come is, for example, http:

Google Reader API?

爱⌒轻易说出口 提交于 2019-11-30 06:49:15
问题 Is there any Google Reader API that I can plug in to? I building a clean RSS/Atom reader in PHP and would love to get all the goodies from Google Reader like the history of a feed, able to add comments to each feed item, etc. 回答1: I've built some google reader integration in python but I can share some of the api knowledge so you can get started. output=json is also available for all. Login: https www.google.com/accounts/ClientLogin POST &email=email&passwd=password&service=reader&source

Feedparser - retrieve old messages from Google Reader

前提是你 提交于 2019-11-30 06:38:35
问题 I'm using the feedparser library in python to retrieve news from a local newspaper (my intent is to do Natural Language Processing over this corpus) and would like to be able to retrieve many past entries from the RSS feed. I'm not very acquainted with the technical issues of RSS, but I think this should be possible (I can see that, e.g., Google Reader and Feedly can do this ''on demand'' as I move the scrollbar). When I do the following: import feedparser url = 'http://feeds.folha.uol.com.br

How to skip known entries when syncing with Google Reader?

孤街醉人 提交于 2019-11-30 00:58:54
for writing an offline client to the Google Reader service I would like to know how to best sync with the service. There doesn't seem to be official documentation yet and the best source I found so far is this: http://code.google.com/p/pyrfeed/wiki/GoogleReaderAPI Now consider this: With the information from above I can download all unread items, I can specify how many items to download and using the atom-id I can detect duplicate entries that I already downloaded. What's missing for me is a way to specify that I just want the updates since my last sync. I can say give me the 10 (parameter n

Google Reader API?

做~自己de王妃 提交于 2019-11-28 22:09:31
Is there any Google Reader API that I can plug in to? I building a clean RSS/Atom reader in PHP and would love to get all the goodies from Google Reader like the history of a feed, able to add comments to each feed item, etc. smilbandit I've built some google reader integration in python but I can share some of the api knowledge so you can get started. output=json is also available for all. Login: https www.google.com/accounts/ClientLogin POST &email=email&passwd=password&service=reader&source=appname&continue=http://www.google.com from the response grab Auth= Next hit: www.google.com/reader

Google Reader Authentication problem

北慕城南 提交于 2019-11-28 22:04:12
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 the Google Reader, and I remove every cookie entries except the SID, and it is not working (well it

Feedparser - retrieve old messages from Google Reader

眉间皱痕 提交于 2019-11-28 20:56:01
I'm using the feedparser library in python to retrieve news from a local newspaper (my intent is to do Natural Language Processing over this corpus) and would like to be able to retrieve many past entries from the RSS feed. I'm not very acquainted with the technical issues of RSS, but I think this should be possible (I can see that, e.g., Google Reader and Feedly can do this ''on demand'' as I move the scrollbar). When I do the following: import feedparser url = 'http://feeds.folha.uol.com.br/folha/emcimadahora/rss091.xml' feed = feedparser.parse(url) for post in feed.entries: title = post

Google Reader API Unread Count

强颜欢笑 提交于 2019-11-28 02:44:58
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? jimmyorr 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 = 'username@gmail.com' password = '******' # Authenticate to obtain SID auth_url = 'https://www.google

Android 4.0 ICS turning HttpURLConnection GET requests into POST requests

南楼画角 提交于 2019-11-27 14:25:51
My Galaxy Nexus arrived today, and one of the first things I did was to load my app onto it so I could demonstrate it to my friends. Part of its functionality involves importing RSS Feeds from Google Reader. However, upon trying this, I was getting 405 Method Not Allowed errors. This problem is Ice Cream Sandwich-specific. The code I've attached works fine on Gingerbread and Honeycomb. I've traced the error down to the moment the connection is made, when the GET request magically turns into a POST request. /** * Get the authentication token from Google * @param auth The Auth Key generated in