Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/grobmeier/buffer-feeder
Simple app which reads from RSS and pushes things to Bufferapp
https://github.com/grobmeier/buffer-feeder
Last synced: 4 days ago
JSON representation
Simple app which reads from RSS and pushes things to Bufferapp
- Host: GitHub
- URL: https://github.com/grobmeier/buffer-feeder
- Owner: grobmeier
- License: apache-2.0
- Created: 2015-03-30T10:07:44.000Z (over 9 years ago)
- Default Branch: develop
- Last Pushed: 2015-03-30T20:26:53.000Z (over 9 years ago)
- Last Synced: 2024-11-05T16:28:46.116Z (about 2 months ago)
- Language: PHP
- Size: 164 KB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.txt
Awesome Lists containing this project
README
# Buffer Feeder
A small lib which let's you auto-publish from RSS to Buffer
using the command line.This code is in pretty early stages and may change. Your input
and suggestions are welcome.You'll need to create a Buffer application and get an access
token from there.## Examples
### Showing profiles
```
bin/buffer profiles
```Shows a list with all connected profiles.
### Configuration file
This is a basic configuration file:
```
[
{
"url": "http://feeds.feedburner.com/dartosphere",
"service": [
{
"profile": "xxx",
"text": "%title% - %url% %hashtags%",
"limit": 100,
"hashtags": "#dartlang"
}
],
"archive": "archive.json"
}
]
```You can have as many job definitions as you want (in theory).
The URL is the url to a valid feed. The service section is the
definition of the services you want to connect. Think
of services as connected social media accounts.The "profile" fields names the Buffer-id of a service. You can find
out about it using the previously mentioned profile-request.Text is the format of the text. %title% etc will be replaced with
the corresponding values."limit" names the maximum number of characters which is allowed. Please note, this
is not bug free. Otherwise it's useful for Twitter.The "archive" file is a file in which is stored what RSS items
were sent out.## License
The code is licensed [Apache License 2.0](https://www.apache.org/licenses/LICENSE-2.0.html).