NPM PASSPORT-INSTAGRAM
app.get('/auth/instagram',
passport.authenticate('instagram'));
app.get('/auth/instagram/callback',
passport.authenticate('instagram', { failureRedirect: '/login' }),
function(req, res) {
// Successful authentication, redirect home.
res.redirect('/');
});
Thoughtful Tuatara