passport-mozi
v0.2.0
Published
mozi authentication strategy for Passport.
Downloads
1
Maintainers
Readme
passport-mozi
Passport strategy for authenticating with Mozi using the OAuth 1.0a API.
This module lets you authenticate using Mozi in your Node.js applications. By plugging into Passport, Mozi authentication can be easily and unobtrusively integrated into any application or framework that supports Connect-style middleware, including Express.
Install
$ npm install passport-mozi
Usage
Create an Application
Before using passport-mozi
, you must first get an Mozi API key. If you
have not already done so, an API key can be requested at internal.
Your will be issued an API key and secret, which need to be provided to the
strategy.
Configure Strategy
The Mozi authentication strategy authenticates users using an Mozi
account and OAuth tokens. The API key secret obtained from Mozi are
supplied as options when creating the strategy. The strategy also requires a
verify
callback, which receives the access token and corresponding secret as
arguments, as well as profile
which contains the authenticated user's Mozi
profile. The verify
callback must call cb
providing a user to complete
authentication.
passport.use(new MoziStrategy({
consumerKey: Mozi_CONSUMER_KEY,
consumerSecret: Mozi_CONSUMER_SECRET,
callbackURL: "http://127.0.0.1:3000/auth/mozi/callback"
},
function(token, tokenSecret, profile, cb) {
User.findOrCreate({ moziId: profile.id }, function (err, user) {
return cb(err, user);
});
}
));
Authenticate Requests
Use passport.authenticate()
, specifying the 'mozi'
strategy, to
authenticate requests.
For example, as route middleware in an Express application:
app.get('/auth/mozi',
passport.authenticate('mozi'));
app.get('/auth/mozi/callback',
passport.authenticate('mozi', { failureRedirect: '/login' }),
function(req, res) {
// Successful authentication, redirect home.
res.redirect('/');
});