Error type |
Request |
Response type |
Missing client_id parameter |
https://{SERVER_ADDRESS}/oauth/access_token/?client_secret=abcd&scope=client_address |
400 Error (Invalid Request) |
Empty client_id parameter |
https://{SERVER_ADDRESS}/oauth/access_token/?client_secret=abcd&scope=client_address&client_id= |
400 Error (Invalid Request) |
Incorrect client_id (expired, out of scope, nonexistent) |
https://{SERVER_ADDRESS}/oauth/access_token/?client_secret=abcd&scope=client_address&client_id={INCORRECT_LICENCE_CODE} |
400 Error (Invalid Client) |
client_id not authorizing the request of the "scope" |
https://{SERVER_ADDRESS}/oauth/access_token/?client_secret=abcd&scope=client_address&client_id={LICENCE_CODE_NOT _AUTHORIZED} |
400 Error (unauthorized client) |
Unknown "scope" parameter value |
https://{SERVER_ADDRESS}/oauth/access_token/?client_secret=abcd&scope=client &client_id={LICENCE_CODE} |
400 Error (unsupported grant type) |
Missing or empty “client_secret” parameter |
https://{SERVER_ADDRESS}/oauth/access_token/?scope=client_address&client_id={LICENCE_CODE} https://{SERVER_ADDRESS}/oauth/access_token/?client_secret=&scope=client_address&client_id={LICENCE_CODE} |
400 Error (Invalid Request) |
Missing or empty “scope” parameter |
https://{SERVER_ADDRESS}/oauth/access_token/?client_secret=abcd&client_id={LICENCE_CODE} https://{SERVER_ADDRESS}/oauth/access_token/?client_secret=abcd&scope=&client_id={LICENCE_CODE} |
400 Error (Invalid Request) |
Error on a parameter |
https://{SERVER_ADDRESS}/oauth/access_token/?client_scret=abcd&scope=client_address&client_id={LICENCE_CODE} |
500 Error |