Socket
Socket
Sign inDemoInstall

express-bnet-auth

Package Overview
Dependencies
3
Maintainers
1
Versions
5
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    express-bnet-auth

Battle.net OAuth Login Express Middleware


Version published
Weekly downloads
6
increased by20%
Maintainers
1
Created
Weekly downloads
 

Readme

Source

##express-bnet-auth Authentication Express Middleware for use with Battle.net OAuth login.

Work In Progress

##Installation

npm install express-bnet-auth --save

###Usage

var bnetOptions = {
  BNET_ID: 'YOUR BNET KEY',
  BNET_SECRET: 'YOUR BNET SECRET',
  CALLBACK_URL: 'https://localhost:8443/auth/bnet/callback'
};

var bnet = require('express-bnet-auth')(bnetOptions);
/*
 * Routes
 */
app.get('/auth/bnet', bnet.auth);

app.get('/auth/bnet/callback', bnet.callback, function (req, res) {
  //If there was an issue with your oauth request, i.e. user denies access, the error is stored in req.error
  if(req.error){
    return res.send('The following error occurred when logging into battle.net: %s', req.error);
  }

  //If if the oauth request was successful the retrieved data will be stored in req.token_data for your use
  return res.send('Your token data is: %s', JSON.stringify(req.token_data));
});

###Changelog

#####0.0.5 README format fix #####0.0.3 Usage examples #####0.0.2 Bug Fix

FAQs

Last updated on 02 Dec 2014

Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc