You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
DESCRIPTION: When utilizing the UI console to interact with the endpoint it expects a 'POST' request to pass the API calls within the request. However, if the request is changed to a 'GET', 'HEAD', 'DELETE', and occasionally 'PATCH' it results in a '500 Internal Server Error' message as a response.
Additionally, within the path= parameter if a character that is not a word character is passed such as <, it results in a '500 Internal Server Error' message as well.
Suggestion:
In general, HTTP 500 responses are indicative of improperly handled errors; correctly handled error conditions should generally result in HTTP 4xx response codes. See
The text was updated successfully, but these errors were encountered:
I think this is related to a previous proposal on better presenting and handling errors and following the error status code: #1625. Since this is related to error presenting and handling as a whole, i think it will require some time allocation. Are we prioritizing this issue?
DESCRIPTION: When utilizing the UI console to interact with the endpoint it expects a 'POST' request to pass the API calls within the request. However, if the request is changed to a 'GET', 'HEAD', 'DELETE', and occasionally 'PATCH' it results in a '500 Internal Server Error' message as a response.
Additionally, within the path= parameter if a character that is not a word character is passed such as <, it results in a '500 Internal Server Error' message as well.
Example:
Suggestion:
In general, HTTP 500 responses are indicative of improperly handled errors; correctly handled error conditions should generally result in HTTP 4xx response codes. See
The text was updated successfully, but these errors were encountered: