You need to enable JavaScript to run this app.
导航

接口错误信息

最近更新时间2022.07.26 10:58:33

首次发布时间2021.02.23 10:42:10

网关错误码与错误信息

Code

CodeN

Message

备注

UndefinedError

100001

Undefined Internal Error. Pls Contact With Admin.

一般不出现这个问题,这是系统开发兜底的错误提示

MissingParameter

100002

The request is missing %s parameter.

关键参数缺失,例如Action, Version参数

MissingAuthenticationToken

100003

Request is missing Authentication Token

缺少身份认证的必要信息,例如Auth信息

MissingRequestInfo

100004

The request is missing %s information.

缺少请求必要信息,例如:Accesskey,service,region等

MissingSignature

100005

The request is missing signature.

缺少签名结果

InvalidTimestamp

100006

The Signature of the request is expired

请求过期或请求的签名时间来自未来

ServiceUnavailable

100007

Ths service[%s] is unavailable.

请求的服务不存在

InvalidActionOrVersion

100008

Could not find operation %s for version %s

请求接口不存在

InvalidClientTokenId

100009

The security token[%s] included in the request is invalid.

请求的AK不合法

SignatureDoesNotMatch

100010

The request signature we calculated does not match the signature you provided. Check your Secret Access Key and signing method. Consult the service documentation for details.

签名结果不正确

ServiceShouldCallSelfApi

100011

The service(%s) should call self-api

使用service aksk访问请求,仅能访问自己的接口和公共服务的接口。公共服务例如:iam

LackPolicy

100012

Request was rejected because of lack of policy.

子用户请求缺少权限(默认是deny的)

AccessDenied

100013

User is not authorized to perform: %s on resource: %s

子用户拥有的权限不支持当前操作

InternalError

100014

Service has some internal Error. Pls Contact With Admin

业务服务存在故障,这里的业务一般指具体的imagex、vod。故障不来自TOP

FailToConnect

100015

Top Fail to Connect to Internal Service

业务服务连接不上,这里的业务一般指具体的imagex、vod。

InternalServiceTimeout

100016

Internal Service is timeout. Pls Contact With Admin

内部服务执行超时,请查看服务在TOP上配置的超时时间。

InnerApiNeedAccountInfo

100017

The inner request should have account info

Service aksk请求内部服务时缺少了账号信息

FlowLimitExceeded

100018

Request was rejected because the request speed of this openAPI is beyond the current flow control limit.

请求过于频繁,超出了基本限速

ServiceUnavailableTemp

100019

Service is busy, please try again later.

处于熔断状态的服务暂时不可访问,稍后重试

MethodNotAllowed

100020

HTTP Method Not Allowed

Http method不合法

LackProjectPolicy

100021

Request was rejected because of lack of project policy.

请求需要验证Project的权限,当前Project权限验证不合法

错误返回样例:
{
"ResponseMetadata" : {
"RequestId" : "201806041104200100100232280022D30" ,
"Action" : "ListUsers" ,
"Version" : "2018-01-01" ,
"Service" : "iam" ,
"Region" : "cn-north-1" ,
"Error" : {
"Code" : "ServiceFailure" ,
"Message" : "The request processing has failed because of an unknown error"
}
    }
}