<script src=".js@latest"></script>
<video id="video" controls></video>
<script>
if (Hls.isSupported()) {
const video = document.getElementById('video');
const hls = new Hls();
hls.attachMedia(video);
hls.on(Hls.Events.MEDIA_ATTACHED, function () {
hls.loadSource(".m3u8");
});
}
</script>
http header
id: 123
token: 456
I have a video required links to API, this API required to send id & token from HTTP header.
Does anyone know how to add HTTP header into HLS.js?
<script src="https://cdn.jsdelivr/npm/hls.js@latest"></script>
<video id="video" controls></video>
<script>
if (Hls.isSupported()) {
const video = document.getElementById('video');
const hls = new Hls();
hls.attachMedia(video);
hls.on(Hls.Events.MEDIA_ATTACHED, function () {
hls.loadSource("http://foo./abc.m3u8");
});
}
</script>
http header
id: 123
token: 456
I have a video required links to API, this API required to send id & token from HTTP header.
Does anyone know how to add HTTP header into HLS.js?
Share Improve this question edited Jun 18, 2019 at 10:52 Sujal Patel 2,5422 gold badges21 silver badges40 bronze badges asked Jun 18, 2019 at 10:39 Benjamin WBenjamin W 2,8487 gold badges30 silver badges50 bronze badges1 Answer
Reset to default 10try to use xhrSetup
.
const hls = new Hls({
xhrSetup: xhr => {
xhr.setRequestHeader('id', 1)
xhr.setRequestHeader('token', 456)
}
})