Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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: 4 days 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 (almost 7 years ago)
- Default Branch: master
- Last Pushed: 2018-04-01T21:41:36.000Z (almost 7 years ago)
- Last Synced: 2025-01-13T11:18:51.441Z (11 days ago)
- Topics: facebook, rss
- Language: JavaScript
- Homepage:
- Size: 22.5 KB
- Stars: 1
- Watchers: 1
- 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 [email protected]
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
```