跳到主要内容
版本:v2

错误处理

错误说明

  1. 错误遵循 rfc7807 规范返回错误
  2. 当发生服务器已知错误会返回 rfc7807 错误
  3. rfc7807的错误响应头的 content-typeapplication/problem+json
  4. 未知错误返回错误的http状态码,content-type可能为 application/json(如果有遇到这种情况请和我们联系,可能是bug导致的)

响应内容

响应头

参数名称参数说明类型
content-type响应内容的类型,取值为: application/problem+jsonstring

响应参数

参数名称参数说明类型
type错误类型string
title标题string
status状态码integer(int32)
detail详细描述string
instance请求的路径string

响应示例:

{
"type": "",
"title": "",
"status": 0,
"detail": "",
"instance": ""
}

建议的错误处理逻辑

  1. 调用接口判断http状态码如果是大于399的是接口调用出错了
  2. 获取接口的 content-type 如果是 application/problem+json 读取body内容转成json
  3. 如果需要根据类型判断走自定义逻辑需要获取 json 的type判断
  4. 如果不需要自定义逻辑则可以直接获取 json里面的titledetail显示出来
  5. 当获取到的 content-type 不是 application/problem+json 直接返回未知错误

错误列表

授权

statustypetitledetail
401authentication-unauthorized未授权请检查授权参数是否正确
401authentication-bad-secret未授权客户端密钥错误
401authentication-client-not-found未授权客户端不存在
401authentication-client-id-malformed未授权客户端ID格式错误
401authentication-client-disabled未授权客户端已禁用
401authentication-signature-time-skewed未授权签名时间不正确
401authentication-signature-time-skewed未授权签名已过期
403access-denied权限拒绝权限拒绝

搜索

statustypetitledetail
400search-header-missing搜索失败请求头缺少
400search-header-wrong-format搜索失败请求头格式错误
403search-book-no-permission搜索失败没有该书籍的权限,请联系运营人员
404search-book-not-found搜索失败英汉书籍未找到
404search-book-not-found搜索失败汉英书籍未找到

其它

http_statue_code描述
429超出请求次数限制,需要稍后再试

FQA

  1. 当在调用接口发生401错误,但是令牌没过期的情况

    这是因为用户IP地址发生变动,所以遇到这种情况只需要重新获取令牌

  2. 接口返回 429 状态码,content-type 为空并且body也是空的

    这是因为接口在这个IP地址调用太频繁接口被限流导致的,所以错误处理的时候需要先判断是否是429错误,如果是429错误则提示用户操作慢一点