Closed jaredhanson closed 3 years ago
This PR implements support for storing application-level state, provided as an option to passport.authenticate().
passport.authenticate()
passport.authenticate('twitter', { state: { beep: 'boop' } });
I've merged this pull request, and released passport-oauth1@1.2.0. More information on the improved state support and how to take advantage it are provided on the blog: Application State in OAuth 1.0
This PR implements support for storing application-level state, provided as an option to
passport.authenticate()
.