You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When running the example, it comes up with this error: Error: OAuth 2.0 authentication requires session support when using state. Did you forget to use express-session middleware?
The text was updated successfully, but these errors were encountered:
Hi aprilsnows,
Just install the express-session npm and placed into your server file.
// Linkedin needed express session
var session = require('express-session');
app.use(session({ secret: 'SECRET' }));
When running the example, it comes up with this error:
Error: OAuth 2.0 authentication requires session support when using state. Did you forget to use express-session middleware?
The text was updated successfully, but these errors were encountered: