I have the code you quoted added, it does seem to help.
You should have a private message from me.
–GG2015
I believe I got it fixed but I would appreciate it Art if you could use the information you have and see if you get the results that I do.
I changed this from:
app.use(passport.initialize());
app.use(passport.session());
app.set(‘trust proxy’, 1);
sess.cookie.secure = true;
app.use(session(sess));
To:
app.set(‘trust proxy’, 1);
sess.cookie.secure = true;
app.use(session(sess));
app.use(passport.initialize());
app.use(passport.session());
As of right now, the issue is completely fixed.
Thank you for the help again Art
–GG2015
And another issue has came up, I tried logging out using my auth0 domain and I am getting this.
I fixed that as well.
This topic was automatically closed 15 days after the last reply. New replies are no longer allowed.