I have PHP app which is a Facebook app. User logs in to it, gives permissions, and then I need my backend Node.js to get some data about this user. It's a weird flow, but there is a reason for that. Technically all what Node.js knows about user currently is Facebook user id. What esle does it need to know to be able to fetch info about this user (assuming that user just authenticated with PHP part, so PHP can supply me this data). And what's the best Node.js library to use for that?
|
|
I seriously doubt that there is a Node.js library for Facebook yet. That being said, it's very easy to pull data like this. All you really need is the access_token from PHP, then just hit:
which will give you a bunch of info about the user, or at least whatever you have permission to get. Note that you'll need to be running Node >= 0.4 in order to use https. or if you just want basic data (pretty much just name/gender), hit:
|
|||
|
|
|
One of these two? https://github.com/DracoBlue/node-facebook-client or https://github.com/gasi/node-facebook-graph I haven't tried either, so good luck. |
|||
|
|
|
Additionally the DracoBlue library uses FQL which is kind of ouy-dated to pull data from facebook. Instead the graph api is much better and easy |
|||
|
|
|
Here is a little tutorial I wrote http://udidu.blogspot.co.il/2012/11/facebook-api-with-nodejs.html |
|||
|
|