0016-00000713
Updated at:
Problem description
The XML body of the RestoreObject request contains an unsupported node.
Cause
You sent a RestoreObject request that contains a Type node in the request body. The RestoreObject operation does not support this node.
Example problems
The following request contains a Type node in its XML body. This node is not supported by the RestoreObject operation and causes the request to fail.
POST /coldarchiveobject?restore HTTP/1.1
Host: cold-archive-bucket.oss-cn-hangzhou.aliyuncs.com
Authorization: AWS qn6q**************:77Dv****************
Date: Tue, 21 Apr 2020 11:09:19 GMT
<RestoreRequest>
<Days>2</Days>
<Type>
</Type>
</RestoreRequest>Solution
Ensure that the XML body of the RestoreObject request is valid.
POST /coldarchiveobject?restore HTTP/1.1
Host: cold-archive-bucket.oss-cn-hangzhou.aliyuncs.com
Authorization: OSS qn6q**************:77Dv****************
Date: Tue, 21 Apr 2020 11:09:19 GMT
<RestoreRequest>
<Days>2</Days>
</RestoreRequest>References
Is this page helpful?