node-facebook-sdk icon indicating copy to clipboard operation
node-facebook-sdk copied to clipboard

Port of Facebook's php sdk

Results 5 node-facebook-sdk issues
Sort by recently updated
recently updated
newest added

I need to use the facebook instant article SDK to convert my articles to the Apple news format so I want to know is it providing the instant article API?

See https://github.com/tenorviol/node-facebook-sdk/issues/8

Was wondering why limit and offset was not working... You can't simply add to the url like so /.../feed?limit=2 You must use this syntax: facebook.api('/.../feed', {limit:2}, function(data) { ... });...

Reason: There is no require('connect').utils.serializeCookie() anymore. Solution: Change the call require('connect').utils.serializeCookie(...) [Line 603] to serializeCookie(...) and declare the following function (taken from an old connect version): ``` js var serializeCookie...

The facebook.api() function returned error object saying the access token was required. So I traced the problem to two possible errors, one being returning the appId + the secret as...