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

A javascript (nodejs) implementation of facebook's client for oauth and rest+graph api

Results 8 node-facebook-client issues
Sort by recently updated
recently updated
newest added

Every once and a while FB probably messes up and starts to return junk which causes a stack trace... ``` 2012-12-22 00:59:51+00:00 app web.3 - - undefined:1 2012-12-22 00:59:51+00:00 app...

hey, thanks for you work so far. However, I'd appreciate some proper error handling, at best in a (de-facto) standard way, i.e. calling callbacks like ``` cb(error) ``` when an...

It would be nice to have support for multipart/form-data uploads.. i want use the //photos call http://developers.facebook.com/docs/reference/api/page/

When working with an app directly on Facebook or installed in a Facebook Page, Facebook makes a POST to the url set in the config with a signed_request. This is...

Hi, we are using this module for a lot of users on our production server. After running the nodes for a while we are experiencing a lot of timeouts, even...

Currently the oauth-code is used for each request to retrieve the access_token (if that is necessary). @liuliu showed a pretty nice approach in his pull request at #16 Would be...

``` var now = new Date(); var expires_time = parseInt(facebook_cookie['expires'], 10) * 1000; if (now.getTime() < expires_time) { /* * The token is expired. */ cb(); return ; } ```...