Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/statico/imgur2rss
Turns Imgur things into RSS feeds
https://github.com/statico/imgur2rss
heroku imgur imgur-album imgur-api rss
Last synced: 4 days ago
JSON representation
Turns Imgur things into RSS feeds
- Host: GitHub
- URL: https://github.com/statico/imgur2rss
- Owner: statico
- License: unlicense
- Created: 2015-08-21T03:42:50.000Z (about 9 years ago)
- Default Branch: master
- Last Pushed: 2015-08-26T20:19:06.000Z (about 9 years ago)
- Last Synced: 2024-10-06T04:47:07.558Z (about 1 month ago)
- Topics: heroku, imgur, imgur-album, imgur-api, rss
- Language: CoffeeScript
- Size: 129 KB
- Stars: 1
- Watchers: 2
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# imgur2rss
A application you can run on Heroku to make RSS feeds of Imgur things.
It currently only supports Imgur albums.
## Usage: Command Line
[Register an Imgur application](https://api.imgur.com/oauth2/addclient) and copy the Client ID. Then:
```
$ npm install -g imgur2rss$ imgur2rss -c YOUR_CLIENT_ID album tleVt
...
```## Usage: Module
```coffeescript
i2r = require "imgur2rss"
i2r.album2rss clientId, albumId, (err, xml) ->
if err
console.error "Error: #{ err }"
process.exit 1
else
console.log xml
```## Usage: Heroku
```
$ git clone https://github.com/statico/imgur2rss.git$ cd imgur2rss
$ heroku create
...
https://someplace-somewhere-1234.herokuapp.com/ ...
Git remote heroku added$ git push heroku master
...
remote: -----> Launching... done, v1
remote: https://someplace-somewhere-1234.herokuapp.com/ deployed to Heroku
...
```Now go to that URL and append `/a/tleVt` to the URL.