oauth2-facebook

Node.js oauth2 Facebook sign in module

Usage no npm install needed!

<script type="module">
  import oauth2Facebook from 'https://cdn.skypack.dev/oauth2-facebook';
</script>

README

oauth2-facebook

Build Status Coverage Status Dependencies Status

Overview

Node.js oauth2 Facebook sign in module.

If you want or need to roll-your-own Facebook login this module with help with the user sign in and get profile.

Once you have the user's profile, in JSON format, saving it to your database of choice is then up to you.

Requirements

Needs node v12.x or > iojs-v1.x

This module uses Promises and Generators. The author's intended case use is within KoaJS.

API

signIn => Returns an object with a Facebook Oauth sign in URL to send the user to and a unique string for state.

getAccessToken => With the code returned from signInUrl, request a Facebook API access token.

getProfile => With the access token returned from getAccessToken, request the user profile.

Usage

Use signIn in your routes to send the user to sign in with facebook.com.

Use getAccessToken and getProfile in your controller to retrieve the user profile from facebook's API.

Also review the test code, *.spec.ts, files in the github.com source repo.

Code review, suggestions and pull requests are welcome - thanks.