hls.js 使用 AWS Cloudfront 的 CORS 存在 Cookie 问题

hls.js CORS using AWS Cloudfront issues with Cookies

我正在尝试使用 Cloudfront HLS 功能设置视频流,但我无法 Hls.js 在请求中发送我的凭据 cookie。

我已经将 Cloudfront 配置为转发 cookie 并转发 Access-control headers。我还设置了我的 S3 CORS 策略以包括 GET、HEAD。

我遇到的问题是,即使我设置了 xhr.withCredentials=true 并且在 session 中定义了 cookie,当我使用 [=47] 查看请求时=] 控制台,我可以看到 HLS 请求没有 cookie。结果,我从云端收到错误响应,说我需要包含凭据 cookie。

代码: 首先,我向我的服务器发出 ajax 请求以生成 cookie。服务器 returns 三个 Set-Cookies headers 在浏览器中存储为 session cookies:

$.ajax(
{
type: 'GET',
url: 'http://subdomain.mydomain.com:8080/service-
webapp/rest/resourceurl/cookies/98400738-a415-4e32-898c-9592d48d1ad7',
success: function (data) {
        playMyVideo();
},
headers: { "Authorization": 'Bearer XXXXXX' }
});

存储 cookie 后,将调用测试函数以使用 HLS.js:

播放我的视频
function test(){
  if (Hls.isSupported()) {
  var video = document.getElementById('video');
  var config = {
    debug: true,
    xhrSetup: function (xhr,url) {
        xhr.withCredentials = true; // do send cookie
    xhr.setRequestHeader("Access-Control-Allow-Headers","Content-Type, Accept, X-Requested-With");
        xhr.setRequestHeader("Access-Control-Allow-Origin","http://sybdomain.domain.com:8080");
    xhr.setRequestHeader("Access-Control-Allow-Credentials","true");
    }
  };
  var hls = new Hls(config);
  // bind them together
  hls.attachMedia(video);
  hls.on(Hls.Events.MEDIA_ATTACHED, function () {
    console.log("video and hls.js are now bound together !");
    hls.loadSource("http://cloudfrontDomain.net/small.m3u8");
    hls.on(Hls.Events.MANIFEST_PARSED, function (event, data) {
      console.log("manifest loaded, found " + data.levels.length + " quality level");
    });
  });
}
video.play();
}

正如您在下面看到的,HLS OPTIONS 和 GET 请求没有设置 session cookies:

HLS 选项请求:

OPTIONS /hls/98400738-a415-4e32-898c-9592d48d1ad7/small.m3u8 HTTP/1.1
Host: cloudfrontDomain.net
Connection: keep-alive
Access-Control-Request-Method: GET
Origin: subdomain.mydomain.com:8080
User-Agent: Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/59.0.3071.104 Safari/537.36
Access-Control-Request-Headers: access-control-allow-credentials,access-control-allow-headers,access-control-allow-origin
Accept: */*
Referer: http://subdomain.mydomain.com:8080/play.html
Accept-Encoding: gzip, deflate
Accept-Language: en-US,en;q=0.8,es;q=0.6

CloudFront 响应:

HTTP/1.1 200 OK
Content-Length: 0
Connection: keep-alive
Date: Fri, 07 Jul 2017 00:16:31 GMT
Access-Control-Allow-Origin: http://subdomain.mydomain.com:8080
Access-Control-Allow-Methods: GET, HEAD
Access-Control-Allow-Headers: access-control-allow-credentials, access-control-allow-headers, access-control-allow-origin
Access-Control-Max-Age: 3000
Access-Control-Allow-Credentials: true
Server: AmazonS3
Vary: Origin,Access-Control-Request-Headers,Access-Control-Request-Method
Age: 845
X-Cache: Hit from cloudfront
Via: 1.1 cloudfrontDomain.net (CloudFront)
X-Amz-Cf-Id: XXXXXX

HLS 后续 GET 请求缺少 cookie:

GET /hls/98400738-a415-4e32-898c-9592d48d1ad7/small.m3u8 HTTP/1.1
Host: cloudfrontDomain.net
Connection: keep-alive
Origin: http://subdomain.mydomain.com:8080
User-Agent: Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/59.0.3071.104 Safari/537.36
Access-Control-Allow-Origin: http://subdomain.mydomain.com:8080
Access-Control-Allow-Credentials: true
Access-Control-Allow-Headers: Content-Type, Accept, X-Requested-With
Accept: */*
Referer: http://subdomain.mydomain.com:8080/play.html
Accept-Encoding: gzip, deflate
Accept-Language: en-US,en;q=0.8,es;q=0.6

我花了 4 天时间试图解决这个问题。我做了很多研究,但我就是想不出解决方案。我是 CORS 的新手,所以我可能不了解某些原理。我认为如果 cookie 存储在 session 中,如果您使用凭据启用 xhr,它们就会被设置,但事实并非如此。

我注意到的另一件事是 HLS.js 生成的 GET 请求没有设置任何 xmlhttprequest header.

感谢您的帮助:)

我终于能够让它工作了。感谢迈克尔的帮助!事实证明,这是不了解 CORS 原则如何工作和正确配置 aws 服务的混合体。主要问题是通过使用 cloudfront 为您的 web 服务和 s3 存储桶提供服务来避免跨域请求。我想补充的一个重要说明是,您在 aws 中所做的任何更改都必须等待它传播。作为一名新的 aws 开发人员,我不知道这一点,并且对做出没有效果的更改感到非常沮丧。这是解决方案:

1) 创建您的 S3 存储桶。

2) 创建 Cloudfront 分配。

3) 在分发中将您的 web-service 域设置为默认来源。

4) 添加第二个源并在分发中添加行为以将所有 .m3u8 和 .ts 文件转发到您的 S3 存储桶。

5) 添加存储桶源时,确保标记限制访问并更新存储桶策略复选框。

6) 在您的存储桶分发行为中,确保转发所有白名单 headers 和 cookie。这都可以在aws控制台中设置。

7) 如果您在服务中使用不同的端口,请确保您也在分发中设置了这些端口。

8) 转到您的 S3 存储桶设置并将 CORS 配置更新为以下内容:

<?xml version="1.0" encoding="UTF-8"?>
<CORSConfiguration xmlns="http://s3.amazonaws.com/doc/2006-03-01/">
<CORSRule>
    <AllowedOrigin>*</AllowedOrigin>
    <AllowedMethod>GET</AllowedMethod>
    <AllowedMethod>HEAD</AllowedMethod>
    <MaxAgeSeconds>3000</MaxAgeSeconds>
    <AllowedHeader>*</AllowedHeader>
</CORSRule>
</CORSConfiguration> 

重要的是,如果您使用 HLS.js 设置以下配置:

var config = {
debug: true,
xhrSetup: function (xhr,url) {
xhr.withCredentials = true; // do send cookie
xhr.setRequestHeader("Access-Control-Allow-Headers","Content-Type, Accept, X-Requested-With");
    xhr.setRequestHeader("Access-Control-Allow-Origin","http://sybdomain.domain.com:8080");
xhr.setRequestHeader("Access-Control-Allow-Credentials","true");
}
};
var hls = new Hls(config);

其他重要说明:

当您使用网络服务提供 cookie 时,您可以将路径设置为“/”,它将应用于您域中的所有请求。

对于可能仅在 Chrome 上遇到此问题的人 Android,我们的问题是浏览器正在缓存 m3u8 文件并给出相同的 CORS 错误。解决方案是将时间戳参数附加到文件的查询字符串 url:

var config = {
  xhrSetup: function (xhr, url) {
    xhr.withCredentials = true; // do send cookies
    url = url + '?t=' + new Date().getTime();
    xhr.open('GET', url, true);
  }
};
var hls = new Hls(config);