https://github.com/johnsusek/socialbore
A daemon to browse social networks for the user, and save posts it finds.
https://github.com/johnsusek/socialbore
facebook rss
Last synced: 11 months ago
JSON representation
A daemon to browse social networks for the user, and save posts it finds.
- Host: GitHub
- URL: https://github.com/johnsusek/socialbore
- Owner: johnsusek
- Created: 2018-04-01T21:17:31.000Z (about 8 years ago)
- Default Branch: master
- Last Pushed: 2018-04-01T21:41:36.000Z (about 8 years ago)
- Last Synced: 2025-08-11T13:39:28.496Z (11 months ago)
- Topics: facebook, rss
- Language: JavaScript
- Homepage:
- Size: 22.5 KB
- Stars: 1
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# socialbore
Socialbore uses a headless Chrome browser to browse Facebook feeds on a regular basis. Each post found is parsed and saved into a database. A server listens and serves an RSS feed from this database at http://127.0.0.1:3000.
## Setup
```bash
# install dependencies
npm install
# set your facebook login/password
# (not required for public feeds)
export SOCIALBORE_USERNAME=user@example.org
export SOCIALBORE_PASSWORD=secret
# (temporary)
# if you want another feed besides your home page,
# edit borer.js line ~56 and change the url
# start the boring daemon and rss server
npm start
# RSS XML is now available at http://127.0.0.1:3000
```