-
Notifications
You must be signed in to change notification settings - Fork 26
Description
The API routes are grouped into sections based on the data type they are editing, in the src/api folder. So far, I've implemented the majority of user info and authentication APIs, so everything else is fair game.
See http://undoc.in/api.html for a list of APIs supported by Google Reader. We will support a subset of these, excluding some of the social stuff, recommendations, and google specific stuff. Here's the subset I want to implement to start with. Except for the routes starting with /accounts, all routes begin with /reader/api/0.
User/auth stuff (done):
/accounts/ClientLogin
/accounts/register (not taken from google)
/token
/user-info
Streams (done):
/stream/contents/user
/stream/contents/feed
/stream/details
/stream/items/ids
/stream/items/count
/stream/items/contents
Subscription (done):
/subscription/edit
/subscription/quickadd
/subscription/list
/subscription/export
/subscribed
Tags (done):
/tag/list
/rename-tag
/edit-tag
/disable-tag
/unread-count
/mark-all-as-read
We may also need some of the routes under /preference as well (done).
Additional documentation:
- http://ranchero.com/downloads/GoogleReaderAPI-2009.pdf
- http://code.google.com/p/pyrfeed/wiki/GoogleReaderAPI
Edit: Most of these are complete, but there are some TODOs listed in the code where something is missing or not quite right. Also see the OPML issue. More testing doesn't hurt either, if you're looking for something to do. :)