Ilja
Ilja

Reputation: 46547

Get specific cookie from request headers (express)

I came across an issue today with express, assume we set several cookies, when I use request.headers only one cookie is returned:

cookie: 'userSession=123'

for example, not only can't I use request.headers.cookie as it is unreliable (users can have several cookies set), but I can't parse it into a JSON object (this is invalid json) nor can I select this cookie specifically, which leads to a subquestion, is this how we get cookies from express response, through headers?

Upvotes: 1

Views: 1423

Answers (1)

C.Raf.T
C.Raf.T

Reputation: 383

you can use cookieParser() from $ npm install cookie-parser

Upvotes: 3

Related Questions