0044-00000102

Updated at:

Problem description

The prefix parameter in the ListLiveChannel request is invalid.

Causes

The prefix parameter in your ListLiveChannel request is invalid. This parameter filters the results to return only LiveChannels whose names start with the specified prefix. The value of the prefix parameter must be UTF-8 encoded and cannot be longer than 1,024 bytes.

Examples

For example, consider the following request:

GET /?live&prefix=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****************

This request fails because the value of the prefix parameter exceeds the length limit.

Solutions

Ensure that all parameters in your request are valid. For example:

GET /?live&max-keys=1&prefix=abc HTTP/1.1
Date: Thu, 25 Aug 2016 07:50:09 GMT
Host: test-bucket.oss-cn-hangzhou.aliyuncs.com
Authorization: OSS qn6q**************:77Dv****************

References