Socket
Book a DemoInstallSign in
Socket

oneid

Package Overview
Dependencies
Maintainers
3
Versions
14
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

oneid

NodeJS plugin for OneID authentication.

latest
npmnpm
Version
0.4.4
Version published
Weekly downloads
1
-75%
Maintainers
3
Weekly downloads
 
Created
Source

Install:

Install the 'oneid' package using NPM.

NPM

npm install oneid

Use

Include the 'oneid' package in your Node application.

var oneid = require('oneid');

If you've already obtained OneID API credentials, create your client using the oneid.getClient() method.

var client = oneid.getClient(API_ID, API_KEY)

Otherwise, don't use any parameters and then use the register() method to generate some fresh credentials.

var client = oneid.getClient()

client.register(function(response) {
  // {
  //   "API_KEY": "noscJaqlagYS/cDAijsbNr==",
  //   "API_ID": "cf438e4e-a7d0-49f4-b85e-6182ec3704cb"
  // }
  client.setCredentials(response.API_ID, response.API_KEY)
})

Then set up a route in your Node application that matches the challenge callback used by the OneID JavaScript API.

app.post('/auth', function(req, res) {
  client.validate(req.body, function(oneid_res) {

    if (oneid_res.isValid()) {

      // save or update user record here

      res.status(200).json({
        errorcode: 0,
        error: "success",
        valid: true
      });
    }
    else {
      res.status(200).json({
        errorcode: -99,
        error: oneid_res.getResponse() || "login not authorized",
        valid: false
      });
    }
  })
})

FAQs

Package last updated on 07 May 2015

Did you know?

Socket

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