Top "Passport-facebook" questions

Passport strategy for authenticating with Facebook using the OAuth 2.0 API.

Insecure Login Blocked: You can't get an access token or log in to this app from an insecure page. Try re-loading the page as https://

I am implementing Passport Facebook Authentication by linking the Facebook Authentication API route to a button using href like: <…

https passport.js facebook-authentication passport-facebook
passport.js with multiple authentication providers?

Using Passport.js is there a way for me to specify multiple authentication providers for the same route? For example (…

node.js passport-facebook passport.js
Passport-Facebook authentication is not providing email for all Facebook accounts

I am using Passport-Facebook authentication. passport.use(new FacebookStrategy({ clientID: 'CLIENT_ID', clientSecret: 'CLIENT_SECRET', callbackURL: "http://www.example.com/…

javascript node.js passport.js passport-facebook
Get request object in Passport strategy callback

So here is my configuration for passport-facebook strategy: passport.use(new FacebookStrategy({ clientID: ".....", clientSecret: ".....", callbackURL: "http://localhost:1337/register/facebook/callback", }, …

node.js passport.js passport-facebook
Oauth2 flow without redirect_uri

I am creating an Android/iOS app which communicates with a Node.js server and would like to identify them …

node.js google-oauth passport.js passport-facebook
Retrieving photo from Facebook using passport-facebook

I am able to retrieve basic user information via passport-facebook, following the below code and saving in mongodb: app.get("/…

node.js express passport.js passport-facebook
Angular/Node/Express/Passport Cross Domain Problems - Enable CORS Passport Facebook Authentication

It's been two days and a million tries to enable CORS when trying to authenticate a user with Facebook using …

angularjs node.js cors passport.js passport-facebook
How to provide frontend with JSON web token after server authentication?

So far I have only dealt with server-rendered apps, where after a user logs in via username/password or using …

node.js authentication passport.js jwt passport-facebook
how to send json as a response after passport authenticationin node.js

I am trying this git example. Which works well when I integrated it with my project, but what I want …

node.js express passport-facebook passport-local