Easy Facebook Auth with Node.js

Jack Scott
4 min readDec 11, 2019

--

5 Steps to install Facebook user login with Node.js

Facebook Login

So you want to add Facebook login to your app or website, hey? Maybe you’ve had problems with Passport.js and want a more straight forward solution. Or maybe you’re just here for fun…

Well this is the article for you!

This article contains a step-by-step tutorial on how to code a Facebook login on your app using OAuth 2. I’ve broken the process as best I could to help you understand exactly what’s going on.

Before We Start ☝️

In this article, we are assuming you:

  • Already know how to write code — preferably JavaScript.

Yep, that’s it. If you don’t know how to code or want a quicker way to add OAuth logins to your app or website, check out Authpack.

Step 1 of 5 🔒

To start, you’ll need to register your app on Facebook.

developers.facebook.com

Now that your app is created, we will need to get it’s ID value which we will use later on in the code.

  • Navigate to the app’s basic settings page — it’s in the left sidebar and is shown in the photo bellow.
  • Copy your App ID.
developers.facebook.com

Step 2 of 5 🔌

When a user is logged in with Facebook, they will then be redirected back to your app. To do this, we need to give Facebook the url that points to your app. You may need to create this app route if you haven’t already.

You can also test Facebook login on your localhost servers. Facebook automatically approves all localhost addresses while the app is in development mode, so you don’t have to add the url if it’s on localhost.

developers.facebook.com

Step 3 of 5 👉

Now it’s time for the good bit, we are going to start logging in your users with Facebook. All we need to do here is append a few parameters to the Facebook login url. When our users click a button or link, we will send them to this url. To make things easier, we are going to use the simple query-string library to append parameters to this url.

Create Facebook OAuth Link

Now that you’ve created the login url, add it to your app or website. Here is a simple React example.

Login Using React.js

Step 4 of 5 🔐

As mentioned before, once your users login, they will be redirected back to your app. The url they are redirect to will contain a special code. For example:

https://www.example.com/authenticate/facebook?code=CODE_IS_HERE

We will use to create an access token. An access token is required to authenticate any future requests we send to Facebook such as getting the user’s name or email address. To get the code and create the access token, we will use the same query-string library that we used before. Let’s go!

  • Get the code from the url.
Get Code From Redirect Url
  • Send the code to your server to be processed — not applicable when already on the server i.e. when using express.
  • Create the access token from your code.
Create Facebook Access Token HTTP Request

Troubleshooting: should Facebook say your redirect URI is incorrect, put a “/” (slash) at the end or the redirect URI.

Step 5 of 5 👩‍💻

Now that you got the access token, we can use it to get data from the Facebook API. We’ve gone ahead and created an example request which you can use to get some basic user details.

  • Create a HTTP request with the access token to get the user’s data.
Create Facebook User HTTP Request

Yahooo! 🎉

If you enjoyed this article, please give it a few claps you can leave up to 50 — or you can comment if you have any questions, I’ll do my best to answer them!

Liked this tutorial? ❤️ Here are some more:

--

--