次のような Nodejs の http 応答に重複した HTTP ヘッダーを追加することを探しています。
HTTP/1.1 206 Partial Content
Content-Length: 1234567
Content-Type: video/ogg
Content-type: multipart/byteranges; boundary=THIS_STRING_SEPARATES
Nodejs が提供する http モジュールを使用しています。応答ヘッダーを送信するときに、「Content-Type」ヘッダーを 1 つしか定義できません。
var header = {};
header['Content-Type'] = "video/ogg";
また
header['Content-Type'] = "multipart/byteranges; boundary=THIS_STRING_SEPARATES";
応答に両方の「Content-Type」を含めることは可能ですか? ありがとう。