https://github.com/timbroddin/meteor-facebook-node-sdk
A wrapper around facebook-node-sdk
https://github.com/timbroddin/meteor-facebook-node-sdk
Last synced: 10 months ago
JSON representation
A wrapper around facebook-node-sdk
- Host: GitHub
- URL: https://github.com/timbroddin/meteor-facebook-node-sdk
- Owner: TimBroddin
- Created: 2014-05-11T13:43:43.000Z (about 12 years ago)
- Default Branch: master
- Last Pushed: 2014-10-14T08:46:07.000Z (over 11 years ago)
- Last Synced: 2025-09-12T04:01:06.070Z (10 months ago)
- Language: JavaScript
- Size: 167 KB
- Stars: 0
- Watchers: 1
- Forks: 1
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
facebook-node-sdk
======================
A wrapper arround [facebook-node-sdk](https://www.npmjs.org/package/facebook-node-sdk). This allows you to do all things Facebook API server-side.
This only brings the methods needed to access the API. For login flow use accounts-facebook.
##Features
- Allows you to set client keys in settings.json
{
"facebook-node-sdk": {
"app_id": "XXXXXXXXXXXX",
"app_secret": "XXXXXXXXXXXXXXX"
}
}
If you don't put this in settings.json, you'll have to init this yourself:
var facebook = new Facebook({
appId: 'XXXXXXXXX',
secret: 'XXXXXXXXXXXXX'
}).setAccessToken('access token');
##Installation
sh
mrt add facebook-node-sdk
##Examples
See [here](https://www.npmjs.org/package/facebook-node-sdk).