UNPKG

@equisoft/oauth2orize-jwt-to-bearer

Version:

JSON Web Token (JWT) Bearer Token Exchange Middleware for OAuth2orize.

35 lines (22 loc) 1.12 kB
# oauth2orize-jwt-to-bearer JSON Web Token (JWT) Profile for OAuth 2.0 Authorization Grants Exchange Middleware for OAuth2orize **Deprecated** See https://github.com/kronostechnologies/oauth2orize-bearer-to-bearer ## Install $ yarn install oauth2orize-jwt-to-bearer ## Usage #### Register Exchange Middleware This exchange middleware is used to by clients to request an access token by using a JSON Web Token (JWT) generated by the client and verified by a Public Key stored on the OAuth 2.0 server. The exchange requires a verify callback, which accepts the client, scope and assertion(JWT), then calls done providing a access token. ```javascript var jwtBearer = require('oauth2orize-jwt-to-bearer').Exchange; server.exchange('urn:ietf:params:oauth:grant-type:jwt-bearer', jwtBearer(function(client, scope, assertion, done) { AccessToken.create(client, scope, function(err, accessToken) { if (err) { return done(err); } done(null, accessToken); }); })); ``` ## Tests $ yarn install --dev $ yarn test ## License [The MIT License](http://opensource.org/licenses/MIT)