Giter Site home page Giter Site logo

Comments (3)

dougwilson avatar dougwilson commented on April 26, 2024

Hi! What you are showing from the Chrome dev tools is the Cookie header, which is in the request, not the response. The Cookie header is only name value pairs; the max age would only appear in the Set-Cookie header, which is in the response.

from cookie-session.

enhaster avatar enhaster commented on April 26, 2024

Thanks, i find it(on tab cookie and make it work!).

But it's strange, that is working only like that:

    name: 'session',
    secret: 'dexter',
    maxAge : 1111,    
    cookie: {       
        secure: true,
                httpOnly: true  
    }
})
);

And not that.

app.use(cookieSession({
    name: 'session',
    secret: 'dexter',

    cookie: {       
        secure: true,
                httpOnly: true ,
                 maxAge : 1111
    }
})
);

However, secure is not working at all, only 'httpOnly' :(

Oh, i need to change secret :)

And if you not boring from me, can you please tall, can i use massive to set many value:key in 1 row (req.session.someid = 'bar4'; //and bar5, 6.... )

from cookie-session.

dougwilson avatar dougwilson commented on April 26, 2024

Hi @enhaster sorry I missed the notification on your response for this oh-so-long-ago :) I'm not really sure what is going on with your example, as I'm not able to reproduce the issue. If you're feeling up for it, please feel free to put together a pull request with a fix, as the maxAge should only be working when it's inside the cookie object, not outside it.

from cookie-session.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.