11 lines
811 B
PHP
11 lines
811 B
PHP
<?php
|
|||
|
|
return [
|
||
|
|
'TOKEN_MISSING' => 'The API key is missing.', 'TOKEN_INVALID' => 'The API key is invalid.',
|
||
|
|
'TOKEN_INACTIVE' => 'The API key is inactive.', 'TOKEN_EXPIRED' => 'The API key has expired.',
|
||
|
|
'TOKEN_REVOKED' => 'The API key has been permanently revoked.', 'MEMBER_INACTIVE' => 'The account is not eligible for API access.',
|
||
|
|
'EMAIL_NOT_VERIFIED' => 'The email address has not been verified.', 'DEVICE_ID_MISSING' => 'The device ID is missing.',
|
||
|
|
'DEVICE_ID_INVALID' => 'The device ID format is not accepted.', 'DEVICE_NOT_BOUND' => 'The API key has not been bound to a device.',
|
||
|
|
'DEVICE_MISMATCH' => 'This API key is bound to another device.', 'TOKEN_LIMIT_REACHED' => 'The API key limit has been reached.',
|
||
|
|
'RATE_LIMITED' => 'Too many requests. Please try again later.',
|
||
|
|
];
|