Giter VIP home page Giter VIP logo

oauth_service's Introduction

oauth_service

Overview

An expressJS + passport oauth proxy to quickly get setup with various OAuth providers. As of now, this node application simply guides a person through a provider's oauth flow and then redirects the user back to a client url with the users basic information as url query params.

Installation

$ npm install
$ node app.js

Dependencies

You will need a credentials.js file

var credentials = {
    'CONSUMER_KEY' : {
      'twitter': 'TWITTER_KEY',
      'facebook': 'FACEBOOK_KEY',
      'github': 'GITHUB_KEY'
    },
    'CONSUMER_SECRET' : {
      'twitter': 'TWITTER_SECRET',
      'facebook': 'FACEBOOK_SECRET',
      'github': 'GITHUB_SECRET'
    }
};

module.exports = credentials;

You will also need to update config.js with the applications domain. This is used in constructing the callback urls for the oauth providers.

Flow

From your client, direct user to

http://<domain>.<tld>/auth/<provider>?clientRedirectUrl=<your redirect url>

This will step the user through the steps and return to clientRedirectUrl the following structure:

<clientRedirectUrl>?provider=<provider>&id=<id>&firstName=<firstName>&lastName=<lastName>&email=<email>

In the case one of these fields is not found, it will return None

You can now parse the query params and do with them as you wish.

Implemented Providers

  1. facebook: Works
  2. twitter: Works
  3. github: Pending

Deployment

Follow along the helpful steps in this Digital Ocean Walkthrough link

oauth_service's People

Contributors

avatch avatar

Stargazers

 avatar

Watchers

James Cloos avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.