In my application(node/express), I have to call a third party server to read some data. The response of the third party server will have custom header sessionId
- Id
being capitalized as per the document. But in my application, the custom header key is changed to sessionid
- id
in lowercase. I tested this behaviour in axios and request-promise http client.
Why upper case in header key is converted to lowercase in node/express?
res.get()
for testing a response? Otherwise, not understanding the use-case for getting theRequest
Headers, which should have been added viareq.set()
– Uturn