1.0.1 • Published 11 years ago

passport-http-bearer v1.0.1

Weekly downloads
118,950
License
-
Repository
github
Last release
11 years ago

Passport-HTTP-Bearer

HTTP Bearer authentication strategy for Passport.

This module lets you authenticate HTTP requests using bearer tokens in your Node.js applications. Bearer tokens are typically used protect API endpoints, and are often issued using OAuth 2.0.

By plugging into Passport, bearer token support can be easily and unobtrusively integrated into any application or framework that supports Connect-style middleware, including Express.

Install

$ npm install passport-http-bearer

Usage

Configure Strategy

The HTTP Bearer authentication strategy authenticates users using a bearer token. The strategy requires a verify callback, which accepts that credential and calls done providing a user. Optional info can be passed, typically including associated scope, which will be set by Passport at req.authInfo to be used by later middleware for authorization and access control.

passport.use(new BearerStrategy(
  function(token, done) {
    User.findOne({ token: token }, function (err, user) {
      if (err) { return done(err); }
      if (!user) { return done(null, false); }
      return done(null, user, { scope: 'all' });
    });
  }
));

Authenticate Requests

Use passport.authenticate(), specifying the 'bearer' strategy, to authenticate requests. Requests containing bearer tokens do not require session support, so the session option can be set to false.

For example, as route middleware in an Express application:

app.get('/profile', 
  passport.authenticate('bearer', { session: false }),
  function(req, res) {
    res.json(req.user);
  });

Implementation

This module is implemented based on The OAuth 2.0 Authorization Protocol: Bearer Tokens, Draft 12. Implementers are encouraged to track the progress of this specification and update update their implementations as necessary. Furthermore, the implications of relying on a non-final draft specification should be understood prior to deployment.

Examples

For a complete, working example, refer to the Bearer example.

Tests

$ npm install --dev
$ make test

Build Status

Credits

License

The MIT License

Copyright (c) 2011-2013 Jared Hanson [http://jaredhanson.net/](http://jaredhanson.net/)

bihua-nodered@atomist/automation-client@aifedespaix/fdp-apinando-authnodebb-plugin-open-api@md-app/loopback-component-oauth2-server@mia-burton/hello-worldpassport-easypay-account@everreal/express-passport-oauth2bookipi-server@jessitron/automation-clientnervatura-express@sinny777/microservices-coremomenta-backendeyezongate-backendfx-services-authentication@infinitebrahmanuniverse/nolb-passport-hthing-it-server@everything-registry/sub-chunk-2413@arikaim/arikaim-servicesmll-sso-interceptorserver-oauth2server.oauthsimayasdh-apiserversshyntech-api-apis2shyntech-api-authentications2egg-passport-http-bearereeechatsso-interceptorsrstesrste-component-coresrste-component-libsrste-component-lib2srste-componentsstayinddgt-editor-apidoitsimpledes-apifactorydq-surgio-gatewaydevir-tileserver@daedalus/node-authqgo@cryptcoin-junkey/sails-auth@digifi/periodicjs.ext.oauth2serverraptor-authcti-passport-jwt-bearer-strategycti-jwt-dealer-strategyctpassrebird-https-letsencryptredbox-portalsails-passport-hooksafe-start-koa2sails-auth-maintainedsails-auth-mikaelwsails-auth-newsails-auth-no-testsails-auth-tokencapitalsails-authensails-auth-220sails-auth-bugfix-zbsails-auth-itroute-injectorrorono-node-redschejulekuesb-license-backendsails_policyresin-blogresin-ghostrestify-bearer-strategyreso-api-oauth2-serverrm3spotit-auth-libember-cli-ghost-appe2e-authslf-editor-apisourcenet_school@deepcase/authcsc-serverdnr-editorskoodgeeagleteazin-serverospreyoyodbyodbwdopal-node-redbvdk-wertung@awearsolutions/node-redopenshift-auth-proxy@axiosleo/node-red@axenuab/joymon-admin-user-portal-backend@b-flower/bdn-oauth2-servercampsi-service-authcaminio-auth@aytacworld/express-logincaipi
1.0.1

11 years ago

1.0.0

11 years ago

0.2.1

11 years ago

0.2.0

12 years ago

0.1.2

12 years ago

0.1.1

12 years ago

0.1.0

12 years ago