Guest User

Untitled

a guest
Jan 21st, 2018
67
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.23 KB | None | 0 0
  1. app.use(function(req, res, next){
  2. // verify that user is a valid authenticated one
  3. if( req.facebook.getSession() ){
  4. // get user info then
  5. req.facebook.api('/me', function(me){
  6. console.log(me);
  7. });
  8. };
  9.  
  10. next();
  11. });
Add Comment
Please, Sign In to add comment