Problem description
The marker parameter in the ListLiveChannel request is invalid.
Causes
An invalid value is specified for the marker parameter in the ListLiveChannel request. The value of this parameter is the name of the LiveChannel after which you want the ListLiveChannel operation to start. The value cannot be longer than 1,024 bytes and must be encoded in UTF-8.
Examples
For example, you initiate the following request:
GET /?live&marker=xxx...(2,000 characters omitted)...xxx HTTP/1.1
Date: Thu, 25 Aug 2016 07:50:09 GMT
Host: test-bucket.oss-cn-hangzhou.aliyuncs.com
Authorization: OSS qn6q**************:77Dv****************The error is returned for the preceding request because the value of the marker parameter exceeds the length limit.
Solutions
Make sure that all parameters in the request are valid, as shown in the following sample request:
GET /?live&max-keys=1&prefix=abc&marker=abcd HTTP/1.1
Date: Thu, 25 Aug 2016 07:50:09 GMT
Host: test-bucket.oss-cn-hangzhou.aliyuncs.com
Authorization: OSS qn6q**************:77Dv****************