This tool is to fill a specific need to reproduce the Google Reader RSS feed functionality so it can be used with publishing tools like dlvr.it which was broken when Google switched to the G+ method of sharing.
This tool is a fork of https://github.com/frosas/google-plus-user-feed which is a node.js based application to create a RSS feed of all your public G+ posts
I created another URL path that will just return items that are posted by Google Reader. The one nice thing with with the G+ json result is that it has a lot of metadata to include the provider who posted the item to your G+ feed. The new url is http://[server:port]/googlereader/[G+ profile id]
These instructions are how to deploy to Heroku
- You need a Google API key in order to run this application. Go to https://developers.google.com/+/api/ to sign up for your key
- Clone this repo with your favorite Git client
- Follow steps on the Heroku Node.js page: http://devcenter.heroku.com/articles/node-js. Below is a summary
heroku create --stack cedar
git push heroku master
heroku ps
heroku config:add NODE_ENV=production
heroku config:add GOOGLE_API_KEY=<api key>
- Open your web browser and go to: http://[heroku app url]/googlereader/[G+ profile id]