問題描述
請求體XML配置中AllowTruncateQueryString
節點取值有誤。
問題原因
您發起PutBucketReferer請求配置防盜鏈,但是請求體XML配置中AllowTruncateQueryString
節點值不是合法的布爾值。
問題示例
以下請求體XML配置中AllowTruncateQueryString
節點值為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>false</AllowEmptyReferer>
<AllowTruncateQueryString>32</AllowTruncateQueryString>
<RefererList>
<Referer>http://www.aliyun.com</Referer>
</RefererList>
</RefererConfiguration>
解決方案
確保請求體XML配置中AllowTruncateQueryString
節點值正確。該節點值用于指定是否截斷QueryString。取值如下:
true(默認值):截斷QueryString。
false:不截斷QueryString。
正確請求示例如下:
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>
相關文檔
文檔內容是否對您有幫助?