简体   繁体   中英

Expiring cookies in native NodeJS

I'm trying to expire a cookie with native NodeJS, specifically for the chrome browser. However, the expiration date that I place doesn't cause the cookie to go away.

As of right now, here's my code:

var cookie = 'Expires=' + new Date();
response.setHeader('Set-Cookie', cookie);

I ended up getting cookies with the expiration date like so even after subsequent requests:

cookie: Expires=Wed Mar 22 2017 02:14:52 GMT-0400 (EDT)

Try This, It may work for you.

'Set-Cookie':'sesh=wakadoo; expires='+new Date(new Date().getTime()+86409000).toUTCString();
Replace sesh=wakadoo with your variable.

You can set cookie expires and httpOnly using the below code.

res.cookie(myCookie, myValue, { expires: new Date(Date.now()+10000), httpOnly: true };

https://expressjs.com/en/api.html#res.cookie

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM