Node http2 requests look like this:
const client = http2.connect('https://somehost.com')
const req = client.request( {
':path': '/some/path',
':method': 'GET',
'header-name': 'header-value',
'cookie': 'foo=bar'
} )
It doesn't seem possible to send multiple cookie headers like this. Am I missing something? Note that the cookies should not get joined like in http/https headers.