NodeJS Library for Facebook
With facebook-node-sdk you can now easily write the same code and share between your server (nodejs) and the client (Facebook Javascript SDK).
Author: Thuzi
Maintainer Daniel Friesen
License: Apache v2
Installing facebook-node-sdk
npm install fb
// Using require() in ES5var FB = ; // Using require() in ES2015var FB FacebookApiException = ; // Using ES2015 import through Babel; // or,;
Library usage
Libraries can isolate themselves from the options belonging to the default FB
by creating an instance of the Facebook
class.
// ES5var FB = fb = options; // ES2015 w/ require()var Facebook FacebookApiException = fb = options; // ES2015 w/ import through Babel;var fb = options;
Multi-app usage
Applications that run on behalf of multiple apps with different Facebook appIds and secrets can use .extend
(on FB
or any Facebook
instance) to create a new instance which inherits options not set on it from the instance it is created from (like the API version
your application is coded against).
FBoptionsversion: 'v2.4';var fooApp = FB barApp = FB;
Graph Api
Get
FB;
Passing Parameters
FB;
Post
FB; var body = 'My first post using facebook-node-sdk';FB;
Upload
FB; FB; FB;
Delete
FB; var postId = '1234567890';FB;
Batch Requests
FB; var extractEtag;FB; { var etag header headerIndex; forheaderIndex in resheaders header = resheadersheaderIndex; ifheadername === 'ETag' etag = headervalue; return etag;};
Post
FB; var message = 'Hi from facebook-node-js';FB;
OAuth Requests
This is a non-standard behavior and does not work in the official client side FB JS SDK.
facebook-node-sdk is capable of handling oauth requests which return non-json responses. You can use it by calling api
method.
Get facebook application access token
FB;
Exchange code for access token
FB;
You can safely extract the code from the url using the url
module. Always make sure to handle invalid oauth callback as
well as error.
var url = ; var urlToParse = 'http://yoururl.com/callback?code=.....#_=_';var result = url;ifresultqueryerror ifresultqueryerror_description console; else console; return; else if !resultquerycode console; return; var code = resultquerycode;
Extend expiry time of the access token
FB;
Access Tokens
setAccessToken
This is a non-standard api and does not exist in the official client side FB JS SDK.
Warning: Due to Node's asynchronous nature, you should not use setAccessToken
when FB
is used on behalf of for multiple users.
FB;
If you want to use the api compatible with FB JS SDK, pass access_token
as parameter.
FB;
withAccessToken
This is a non-standard api and does not exist in the official client side FB JS SDK.
Using FB.extend
this returns a new FB object that inherits the same options but has an accessToken specific to it set.
var fb = FB;
getAccessToken
Unlike setAccessToken
this is a standard api and exists in FB JS SDK.
FB;var accessToken = FB;
AppSecret Proof
For improved security, as soon as you provide an app secret and an access token, the library automatically computes and adds the appsecret_proof parameter to your requests.
Rate limiting
Current rate limit values are updated after each response received.
If your app is making enough calls to be considered for rate limiting by our system, we return an X-App-Usage HTTP header.
That means if your API usage is low enough, Facebook don't send any information about rate limits and we consider them as 0
getAppUsage
var appUsage = FB;/* { callCount: 0, totalTime: 0, totalCPUTime: 0 }*/
getPageUsage
var pageUsage = FB;/*{ callCount: 0, totalTime: 0, totalCPUTime: 0}*/
Configuration options
options
This is a non-standard api and does not exist in the official client side FB JS SDK.
When this method is called with no parameters it will return all of the current options.
var options = FBoptions;
When this method is called with a string it will return the value of the option if exists, null if it does not.
var timeout = FBoptions'timeout';
When this method is called with an object it will merge the object onto the previous options object.
FBoptionsaccessToken: 'abc'; //equivalent to calling setAccessToken('abc')FBoptionstimeout: 1000 accessToken: 'XYZ'; //will set timeout and accessToken optionsvar timeout = FBoptions'timeout'; //will get a timeout of 1000var accessToken = FBoptions'accessToken'; //will get the accessToken of 'XYZ'
The existing options are:
'accessToken'
string representing the Facebook accessToken to be used for requests. This is the same option that is updated by thesetAccessToken
andgetAccessToken
methods.'appId'
The ID of your app, found in your app's dashboard.'appSecret'
string representing the Facebook application secret.'version'
[default='v2.3'
] string representing the Facebook api version to use. Defaults to the oldest available version of the api.'proxy'
string representing an HTTP proxy to be used. Support proxy Auth with Basic Auth, embedding the auth info in the uri: 'http://[username:password@]proxy[:port]' (parameters in brackets are optional).'timeout'
integer number of milliseconds to wait for a response. Requests that have not received a response in X ms. If set to null or 0 no timeout will exist. On timeout an error object will be returned to the api callback with the error code of'ETIMEDOUT'
(example below).'scope'
string representing the Facebook scope to use ingetLoginUrl
.'redirectUri'
string representing the Facebook redirect_uri to use ingetLoginUrl
.'Promise'
Promise implementation to use whenFB.api
is called without a callback. Defaults to the Promise implementation returned byrequire('any-promise')
.
version
This is a non-standard api and does not exist in the official client side FB JS SDK.
Gets the string representation of the facebook-node-sdk library version.
var version = FBversion;
Parsing Signed Request
parseSignedRequest
This is a non-standard api and does not exist in the official client side FB JS SDK.
var signedRequestValue = 'signed_request_value';var appSecret = 'app_secret'; var signedRequest = FB;ifsignedRequest var accessToken = signedRequestoauth_token; var userId = signedRequestuser_id; var userCountry = signedRequestusercountry;
Note: parseSignedRequest will return undefined if validation fails. Always remember to check the result of parseSignedRequest before accessing the result.
If you already set the appSecret in options, you can ignore the second parameter when calling parseSignedRequest. If you do pass the second parameter it will use the appSecret passed in parameter instead of using appSecret from options.
If appSecret is absent, parseSignedRequest will throw an error.
FBoptions'appSecret': 'app_secret'; var signedRequestValue = 'signed_request_value'; var signedRequest = FB;ifsignedRequest var accessToken = signedRequestoauth_token; var userId = signedRequestuser_id; var userCountry = signedRequestusercountry;
Manual Login Flow
getLoginUrl
This is a non-standard api and does not exist in the official client side FB JS SDK.
This returns the redirect url for a manual login flow.
FB;
These options are accepted and all correspond to url parameters documented in Facebook's manual login flow documentation.
'appId'
/'client_id'
[default=FB.options('appId')
] The ID of your app, found in your app's dashboard.'redirectUri'
/'redirect_uri'
[default=FB.options('redirectUri')
] The URL that you want to redirect the person logging in back to. This URL will capture the response from the Login Dialog.'scope'
[default=FB.options('scope')
] A comma separated list of Permissions to request from the person using your app.'display'
Can be set to 'popup'.'state'
An arbitrary unique string created by your app to guard against Cross-site Request Forgery.'responseType'
/'response_type'
[default='code'
] Determines whether the response data included when the redirect back to the app occurs is in URL parameters or fragments.
Error handling
Note: Facebook is not consistent with their error format, and different systems can fail causing different error formats
Some examples of various error codes you can check for:
'ECONNRESET'
- connection reset by peer'ETIMEDOUT'
- connection timed out'ESOCKETTIMEDOUT'
- socket timed out'JSONPARSE'
- could not parse JSON response, happens when the FB API has availability issues. It sometimes returns HTML
FBoptionstimeout: 1 accessToken: 'access_token'; FB;
Promise based interface
This is a non-standard api and does not exist in the official client side FB JS SDK.
When FB.api
is called without a callback it will instead return a Promise that will either resolve with the same response as FB.api
or be rejected with a FacebookApiException
error.
FB ; // In an async function { try var response = await FB; console; catcherror iferrorresponseerrorcode === 'ETIMEDOUT' console; else console; }
The promise implementation used can be controlled using any-promise's register interface or by setting the Promise
option.
// any-promise;;let response = await FB; // Promise option;FBoptions Promise: ;let response = await fb; // Promise option in a library;var fb = Promise: ;let response = await fb;
Node style callback with FB.napi
This is a non-standard api and does not exist in the official client side FB JS SDK.
FB.napi
takes the same input as FB.api
. Only the callback parameters is different. In the original FB.api
, the callback expects one parameter which is the response. In FB.napi
the callback expects two parameters instead of one and follows the node standards. The first parameter is an error which is always of type FacebookApiException
and the second parameter is the same response as in FB.api
. Error response can be accessed using error.response
which is the same response as the response when using FB.api
.
FB;
FB.napi
was added especially to make it easier to work with async control flow libraries.
Here are some examples of using facebook-node-sdk with Step.
You will need to install step
.
npm install step
FB.api with Step
var FB = Step = ; ;
FB.napi with Step
Simplified version of facebook-node-sdk async callbacks using FB.napi
.
var FB = Step = ; ;