所有返回都会遵循下面的结构体返回
If code
is 0, means the endpoint is successfully invoked.
And you can get the required data from data.
If code
is not 0, please refer to the error code table for troubleshooting.
{
"code": 0, // 0 means request successful
// "message": "error message",
"data": {
... // here is the data you need
}
}
code | message | description |
---|---|---|
0 | Success | Success |
403 | 权限错误,请检查API Key | |
429 | 请求过于频繁 | |
500 | 服务器错误(请联系我们) | |
1000 | 其他错误 |