https://github.com/elek/fbfeed
Simple application transforms a facebook feed to an atom feed.
https://github.com/elek/fbfeed
Last synced: 3 months ago
JSON representation
Simple application transforms a facebook feed to an atom feed.
- Host: GitHub
- URL: https://github.com/elek/fbfeed
- Owner: elek
- Created: 2013-04-18T21:31:21.000Z (about 12 years ago)
- Default Branch: master
- Last Pushed: 2013-07-17T18:15:41.000Z (almost 12 years ago)
- Last Synced: 2025-02-12T10:55:18.553Z (5 months ago)
- Language: Java
- Size: 270 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
1. Get a facebook access token.
a.) generate one on http://developers.facebook.com/tools/explorer (valid for a few hours!!)
b.) or generate one (valid for 60 days) with the facebook api. You need a registered facebook application and get two url.
```
https://www.facebook.com/dialog/oauth?client_id=APP_ID&redirect_uri=http%3A%2F%2Fanything.com%2F
https://graph.facebook.com/oauth/access_token?client_id=APP_ID&redirect_uri=SAME_AS_ABOVE&client_secret=APP_SECRET&code=USE_FROM_THE_PREV_RESPONSE
```
2. Build with./gradlew jar
3. Run with
java -jar build/lib/fbfeed....jar
```
--id VAL : Id of the facebook object, or a file with one id per line.
--key VAL : Access token (see above)
--output FILE : Destination directory
--type VAL : Output type (rss,html,sysout). Multiple format can be used with separating with ,
```