日本熟妇hd丰满老熟妇,中文字幕一区二区三区在线不卡 ,亚洲成片在线观看,免费女同在线一区二区

0033-00000003

問題描述

請求體XML配置中AllowEmptyReferer節點取值有誤。

問題原因

您發起PutBucketReferer請求配置防盜鏈,但是請求體XML配置中AllowEmptyReferer節點值不是合法的布爾值。

問題示例

以下請求體XML配置中AllowEmptyReferer節點值為32,取值不合法導致請求錯誤。

PUT /?referer HTTP/1.1
Date: Fri, 24 Feb 2017 03:15:40 GMT
Content-Length:322
Content-Type: application/xml
Host: oss-example.oss-cn-hangzhou.aliyuncs.com
Authorization: OSS qn6q**************:77Dv****************

<?xml version="1.0" encoding="UTF-8"?>
<RefererConfiguration>
	<AllowEmptyReferer>32</AllowEmptyReferer>
  <AllowTruncateQueryString>false</AllowTruncateQueryString>
  <RefererList>
        <Referer>http://www.aliyun.com</Referer>
  </RefererList>
</RefererConfiguration>

解決方案

確保請求體XML配置中AllowEmptyReferer節點值正確。該節點用于指定是否允許Referer字段為空的請求訪問OSS。取值如下:

  • true(默認值):允許Referer字段為空的請求訪問OSS。

  • false:不允許Referer字段為空的請求訪問OSS。

正確請求示例如下:

PUT /?referer HTTP/1.1
Date: Fri, 24 Feb 2017 03:15:40 GMT
Content-Length:322
Content-Type: application/xml
Host: oss-example.oss-cn-hangzhou.aliyuncs.com
Authorization: OSS qn6q**************:77Dv****************

<?xml version="1.0" encoding="UTF-8"?>
<RefererConfiguration>
  <AllowEmptyReferer>false</AllowEmptyReferer>
  <AllowTruncateQueryString>false</AllowTruncateQueryString>
  <RefererList>
        <Referer>http://www.aliyun.com</Referer>
  </RefererList>
</RefererConfiguration>

相關文檔