对于使用预设和自定义政策签名的Cookie,我有Access Denied
GITS请求到Cloudfront。
cdn.example.com
是abc.cloudfront.net
的备用域,CNAME在cloudfront和cloudflare上设置。abc.example.com/authorize
后,cdn.example.com
可以访问。abc.example.com/authroize
后面使用PHP和Laravel,代码如下。```
$cloudFront = new Aws\CloudFront\CloudFrontClient([
'region' => 'us-west-2',
'version' => '2014-11-06'
]);
$resourceKey = 'http://cdn.example.com';
$expires = time() + 300;
$signedCookieCannedPolicy = $cloudFront->getSignedCookie([
'url' => $resourceKey,
'expires' => $expires,
'private_key' => 'pk.pem',
'key_pair_id' => 'XXXXXXXXXXXXXX',
]);
$response = Response::success();
foreach ($signedCookieCannedPolicy as $name => $value) {
$response->withCookie(Cookie::make($name, $value, 360, null, 'example.com'));
}
return $response;
```
答案 0 :(得分:0)
原来这个问题是由加密的cookie引起的。您可能想要检查:https://laravel.com/api/5.2/Illuminate/Cookie/CookieJar.html#method_make如果您使用的是Laravel 5.2,请确保在使用中间件加密时添加了例外。