0.0.1 • Published 11 years ago

idp-persona v0.0.1

Weekly downloads
2
License
-
Repository
github
Last release
11 years ago

IDPPersona Build Status

Persona client

Getting Started

Install the module with: npm install idp-persona

Usage

var idpPersona = require('idp-github')({ audience: 'http://myurl' });

// Using the assertion provided by the Persona login, get the identity:
idpPersona(assertion, function (err, identity) {
  if (err) {
    console.error('explode');
  }
  else {
    do_amazing_things_with(identity.id, identity.email);
    // identity.id and identity.email are the same thing
  }
});