hapi-fxa-oauth

v1.0.0

Hapi auth plugin for Firefox Accounts

This is a simple authentication plugin for Hapi applications to become Firefox Accounts OAuth service providers. It accepts FxA bearer tokens in the Authorization header, verifies them against the hosted FxA verifier, and sets the returned user data as the request credentials.

Enable it in your Hapi server configuration like so:

server.register({
  register: require('hapi-fxa-oauth')
})

Or customize things like so:

server.register({
  register: require('hapi-fxa-oauth'),
  options: {
    url: 'https://oauth-stable.dev.lcip.org', // FxA dev server
    keepAlive: false,                         // don't hold connections open
  }
})

Metadata

  • MPL 2.0
  • Whatever
  • Unknown
  • released 10/23/2014

Downloads

Maintainers