Set non-persistent session using PassportJS?How do I expire a PHP session after 30 minutes?How do I set/unset a cookie with jQuery?How to keep alive an NodeJS Passport sessionExpressJS/PassportJS: Authentication vs. SessionsUsing redis with Passportjs for sessions does not workWhat is a persistent login session in simple words?Why is my session expiring every time I close the browser?Express-mysql-session preventing passport deserializeUser from runningSession management mysql and nodejsFailed to serialize user into session with passportjs and cookie-session
Explicit song lyrics checker
In the US, can a former president run again?
Implementation of the Jacobi Symbol in C
「捨ててしまう」why is there two て’s used here?
King or Queen-Which piece is which?
What does it cost to buy a tavern?
What is the most suitable position for a bishop here?
reverse a call to mmap()
How much steel armor can you wear and still be able to swim?
Can a character learn spells from someone else's spellbook and then sell it?
Can I apply for a working holiday visa at age 30 and get the full 12 months?
Would a 7805 5 V regulator drain a 9 V battery?
Synaptic Static - when to roll the d6?
Definition of 'vrit'
Why do you need to heat the pan before heating the olive oil?
Summing cube roots in fractions
What is this plant I saw for sale at a Romanian farmer's market?
How to make all magic-casting innate, but still rare?
Make symbols atomic, without losing their type
Counterfeit checks were created for my account. How does this type of fraud work?
What does this Swiss black on yellow rectangular traffic sign with a symbol looking like a dart mean?
Densest sphere packing
How are で and いう being used in this context?
Slow Performance When Changing Object Data [2.8]
Set non-persistent session using PassportJS?
How do I expire a PHP session after 30 minutes?How do I set/unset a cookie with jQuery?How to keep alive an NodeJS Passport sessionExpressJS/PassportJS: Authentication vs. SessionsUsing redis with Passportjs for sessions does not workWhat is a persistent login session in simple words?Why is my session expiring every time I close the browser?Express-mysql-session preventing passport deserializeUser from runningSession management mysql and nodejsFailed to serialize user into session with passportjs and cookie-session
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty height:90px;width:728px;box-sizing:border-box;
I'm setting up a basic username/password login for an app running ExpressJS + PassportJS for authentication. According to PassportJS documentation:
After successful authentication, Passport will establish a persistent
login session.
How exactly do you create a non-persistent session with PassportJS? After logging in to the application I would like a user's session to eventually expire so that the next time they visit the app they would be required to authenticate again.
I'm using cookie-session
for this. Here are my options:
app.use(session(
name: 'mysession',
keys: ['key1', 'key2'],
secret: 'secretcode12345',
cookie:
secure: true,
maxAge: 10000
))
According to this, the session should expire in 10 seconds after logging in. But my browser shows the cookie expiring at 1969-12-31T23:59:59.000Z
which essentially means that it is persistent. So when using PassportJS session functionality, are the cookie-session
options just ignored or what exactly?
node.js express session cookies passport.js
add a comment |
I'm setting up a basic username/password login for an app running ExpressJS + PassportJS for authentication. According to PassportJS documentation:
After successful authentication, Passport will establish a persistent
login session.
How exactly do you create a non-persistent session with PassportJS? After logging in to the application I would like a user's session to eventually expire so that the next time they visit the app they would be required to authenticate again.
I'm using cookie-session
for this. Here are my options:
app.use(session(
name: 'mysession',
keys: ['key1', 'key2'],
secret: 'secretcode12345',
cookie:
secure: true,
maxAge: 10000
))
According to this, the session should expire in 10 seconds after logging in. But my browser shows the cookie expiring at 1969-12-31T23:59:59.000Z
which essentially means that it is persistent. So when using PassportJS session functionality, are the cookie-session
options just ignored or what exactly?
node.js express session cookies passport.js
add a comment |
I'm setting up a basic username/password login for an app running ExpressJS + PassportJS for authentication. According to PassportJS documentation:
After successful authentication, Passport will establish a persistent
login session.
How exactly do you create a non-persistent session with PassportJS? After logging in to the application I would like a user's session to eventually expire so that the next time they visit the app they would be required to authenticate again.
I'm using cookie-session
for this. Here are my options:
app.use(session(
name: 'mysession',
keys: ['key1', 'key2'],
secret: 'secretcode12345',
cookie:
secure: true,
maxAge: 10000
))
According to this, the session should expire in 10 seconds after logging in. But my browser shows the cookie expiring at 1969-12-31T23:59:59.000Z
which essentially means that it is persistent. So when using PassportJS session functionality, are the cookie-session
options just ignored or what exactly?
node.js express session cookies passport.js
I'm setting up a basic username/password login for an app running ExpressJS + PassportJS for authentication. According to PassportJS documentation:
After successful authentication, Passport will establish a persistent
login session.
How exactly do you create a non-persistent session with PassportJS? After logging in to the application I would like a user's session to eventually expire so that the next time they visit the app they would be required to authenticate again.
I'm using cookie-session
for this. Here are my options:
app.use(session(
name: 'mysession',
keys: ['key1', 'key2'],
secret: 'secretcode12345',
cookie:
secure: true,
maxAge: 10000
))
According to this, the session should expire in 10 seconds after logging in. But my browser shows the cookie expiring at 1969-12-31T23:59:59.000Z
which essentially means that it is persistent. So when using PassportJS session functionality, are the cookie-session
options just ignored or what exactly?
node.js express session cookies passport.js
node.js express session cookies passport.js
asked Mar 25 at 6:09
Jake WilsonJake Wilson
42.6k69200309
42.6k69200309
add a comment |
add a comment |
0
active
oldest
votes
Your Answer
StackExchange.ifUsing("editor", function ()
StackExchange.using("externalEditor", function ()
StackExchange.using("snippets", function ()
StackExchange.snippets.init();
);
);
, "code-snippets");
StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "1"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);
else
createEditor();
);
function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);
);
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55332084%2fset-non-persistent-session-using-passportjs%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
0
active
oldest
votes
0
active
oldest
votes
active
oldest
votes
active
oldest
votes
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55332084%2fset-non-persistent-session-using-passportjs%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown