Created
May 31, 2011 18:50
-
-
Save codepunkt/1001044 to your computer and use it in GitHub Desktop.
ExpressJS: set/delete cookies
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Dependencies. | |
var express = require('express') | |
app = module.exports = express.createServer(), | |
del = function(req, res) { res.clearCookie('login_token'); res.redirect('/'); }, | |
set = function(req, res) { res.cookie('login_token', +new Date(), { maxAge: 3600000, path: '/' }); res.redirect('/'); }; | |
// Config | |
app.configure(function() { | |
app.use(express.bodyParser()); | |
app.use(express.cookieParser()); | |
app.use(app.router); | |
}); | |
// Routes | |
app.get('/', function home(req, res) { | |
res.end('<a href="/set">set</a> <a href="/del/a">del</a> <a href="/del">rlydel</a>'); | |
console.log(req.cookies); | |
}); | |
app.get('/set', set); | |
app.get('/del/a', del); | |
app.get('/del', del); | |
// Server | |
app.listen(3000); |
How to clear all cookies programmatically? Not only those you explicitly set yourself in your app with `res.cookie(...), but also those ones that third-party services set themselves, like FB during login with FB. Is it possible at all? This is for the sake of testing, to clear all cookies, that is reset the state in order to start a test again.
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
in nodejs module request or express have function curl_setopt($ch, CURLOPT_COOKIESESSION, TRUE); code PHP