Reputation: 15726
I can authenticate with facebook and everyauth but it doesn't work without the session module plugged in. The error message is...
Step getSession of
I don't want my app to use session.
Is it using it to store the user id of the authenticated user? If so, surely it could just put it in a cookie and encrypt it.
Upvotes: 0
Views: 47
Reputation: 26134
You can use cookie-session for cookie-based session if you're not willing to use express' session middleware.
Upvotes: 1