0.1.0 • Published 11 years ago

passport-scope-restrict v0.1.0

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

passport-scope-restrict Build Status

Enforce authorization based on OAuth scopes set by Passport.js.

This is typically used to protect an API by requiring that the scopes associated with the client are allowed to call the API. Check out passport-http-bearer for one strategy you can build on to achieve this.

Examples

var express = require('express')
  , passport = require('passport')
  , restrict = require('passport-scope-restrict');

// setup your Express app, and configure Passport with some strategy which add `scopes` to `req.authInfo`.

app.use('/api/admin', restrict('admin'));

License

MIT. See LICENSE for details.