最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

javascript - HLS.js required send http header - Stack Overflow

programmeradmin0浏览0评论
<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 badges
Add a ment  | 

1 Answer 1

Reset to default 10

try to use xhrSetup.

const hls = new Hls({
  xhrSetup: xhr => {
    xhr.setRequestHeader('id', 1)
    xhr.setRequestHeader('token', 456)
  }
})

发布评论

评论列表(0)

  1. 暂无评论