angular2-node-fb-login icon indicating copy to clipboard operation
angular2-node-fb-login copied to clipboard

Demo application that shows how to enable Facebook login with Angular 2 on frontend and Node.js/Express on backend

Results 2 angular2-node-fb-login issues
Sort by recently updated
recently updated
newest added

``` router.route('/auth/facebook') .post(passport.authenticate('facebook-token', {session: false}), function(req, res, next) { if (!req.user) { return res.send(401, 'User Not Authenticated'); } // prepare token for API req.auth = { id: req.user.id }; next();...

I'm getting the above error in my [app.module.ts](https://github.com/GenFirst/angular2-node-fb-login/blob/master/frontend/src/app/app.module.ts). Does the Http type come with typescript?