Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Passport is authentication middleware for Node.js. Extremely flexible and modular, Passport can be unobtrusively dropped in to any Connect/Express-based web application. A comprehensive set of strategies support authentication using a username and password, Facebook, Twitter, and more.

learn more… | top users | synonyms

0
votes
1answer
14 views

facebook_session has no method graphCall

I'm using the DracoBlue node-facebook-client and passport.js to authenticate a user into my app, then check if they are a member of a specific group. I retrieve the users profile and access token ...
0
votes
0answers
19 views

Facebook OAuth creates new user each time using Passport and Express

I am using the Passport node module in conjunction with Express to enable users to login via facebook, twitter, and google. I have setup facebook and twitter so far and users can login successfully, ...
6
votes
3answers
154 views

passport authentication failure leads to redirect loop

I am using node, express and passport with facebook authentication. I have the following routes (when /facebook/auth/callback is the callback url): function render(page, req, res) { var user = ...
0
votes
0answers
95 views

Passportjs facebook authentication is blocking my application

Modules: "express": "~3.0.0", "jade": ">= 0.0.1", "mongoose": ">= 3.6.2", "connect-mongo": "0.3.2", "nodemailer": ">= 0.3.20", "socket.io": "0.9", "cookie": "0.0.5", "passport": "0.2.3", ...
0
votes
1answer
183 views

How to show popup window instead redirect to facebook?

I use this tutorial to authenticate users via facebook. But I need to need to show popup window instead redirecting to facebook site. How can I do that?
2
votes
1answer
80 views

Can the callback for facebook-pasport be dynamically constructed?

When using facebook-passport the usual thing to do is to specify the redirect_uri in the constructor of the FacebookStrategy thst you use, something like this: passport.use("facebook", new ...
1
vote
1answer
291 views

Creating facebook app with callback url

I am creating a facebook app. And I want to let users to login to my website using it(Using passportjs). But to do that, I need to give callback url(my website url). But I couldn't find that field in ...
0
votes
1answer
240 views

How to interact with Facebook Graph API when using PassportJS

Probably obvious and simple. I have an application that should access a Facebook users friends information. After a user have been authenticated using PassportJS and my application receives the ...
0
votes
0answers
114 views

Node.js - Facebook Logging in a user from the App Center (Visit website button)

I'm using Passport and Facebook Strategy for authentication. It works fine from within my website. Clicking the login button makes a get request to auth/facebook/ and I succesfully log in the user. I ...
1
vote
0answers
203 views

Node.js Passport get Facebook session on Page Load

I've got the passport Facebook Strategy working fine. However, reading facebook documentation I stumble upon this : FACEBOOK DOCS A special consideration when using the Query String setting: ...
0
votes
0answers
130 views

How can I specify what PassportJS does after a callback without using ExpressJS?

The PassportJS website has the following code example, where somebody can specify their own flow of logic after a callback goes through: app.get('/auth/facebook/callback', ...
0
votes
1answer
583 views

Node.js Passport deserializing Users returns 20+ indentical users

Everything seems to works. The request to Parse.com checks if the users exists and either creates it or retrieves it. I'm having two main problem. First, when the deserializeUser function is called it ...
2
votes
1answer
440 views

nodejs passport always going to failure URL

I am using passport to allow logging in through Facebook on my website. Everything seems to work just fine, but callback from Facebook's site always goes to the failureRedirect even though I get all ...
0
votes
1answer
156 views

API Error Code: 100 using passport-facebook in nodejitsu

I've been developing this app during the last few weeks, which uses a login system based on passport-facebook, and everything was working fine on my dev computer until I decided to test it on ...
2
votes
1answer
690 views

Passport-facebook access req object from within callback function

On the callback from Facebook for nodejs passport authentication, how do you get the req object within the callback? passport.use(new FacebookStrategy({ clientID: 123456789, clientSecret: ...
4
votes
1answer
3k views

Using PassportJS with Connect for NodeJS to authenticate Facebook Users

I'm trying to integrate passport into my nodejs server using connect, but can't seem to do it properly. All the guides/examples use expressJS, so I tried my best to reformat the code to work with my ...