Error codes
If an error occurs when you call an API, an error response is returned, where the objectresult
indicates the error code (resultCode
) and error message (resultMessage
). You can use error codes and messages to troublshoot issues.
Error codes are usually classified into the following categories:
- Common error codes: are common for all Mini Program OpenAPIs. Â
- API-specific error codes: are dedicated to a specific OpenAPI.
Common error codes
The following table lists all common error codes for Mini Program OpenAPIs. If you do not find an error code in the following table, it means that the error code is not common, but dedicated to a specific OpenAPI (see the following API-specific error codes section).
resultCode | resultStatus | resultMessage | Further Action |
PROCESS_FAIL | F | A general business failure occurred. Do not retry. | Human intervention is usually needed. It is recommendeded that you contact Mini Program Technical Support to troubleshoot the issue. |
PARAM_ILLEGAL | F | Illegal parameters. For example, non-numeric input, invalid date.     | Check and verify whether the request fields (including the header fields and body fields) of the current API are correct and valid. For details, see the specific API specification, for example, the API specification |
INVALID_API | F | The called API is invalid or not active. | Check whether the current API name is used by mistakes when the API is called. |
ACCESS_DENIED | F | Access is denied          | Need to check the |
REQUEST_TRAFFIC_EXCEED_LIMIT | F | The request traffic exceeds the limit. Â Â |
|
EXPIRED_ACCESS_TOKEN | F | The access token is expired. | Renew the access token by calling the |
UNKNOWN_EXCEPTION | U | An API calling is failed, which is caused by unknown reasons. | Trying to recall the API might help to resolve the issue. |
API-specific error codes
For error codes that are dedicated to a specific API, see the Result section in each API specification, for example , the API specificationapplyToken
.