HTTP ERRORs
HTTP error is a message from web Server indicating that something went wrong.
Reason behind this error- A mistake you have have made or sites fault. Each error has a code dedicated to it.
There are so many HTTP codes indicating varieties of responses for example-
1xx- Information responses-
request received and continuous process.
2xx- Successful-
Successfully received request and process accepted.
3xx- Redirection-
for further action to complete the request.
4xx- Client Error-
request containing bad syntex and cannot be fulfilled.
5xx- Server Error-
your request is valid but server could not fulfil it and failed.
Today we are discussing an Error, HTTP Client Errors
There are various types of Client Error like-
Error 400- Bad Request
Error 401- Unauthorized
Error 402- Payment Required
Error 403- Forbidden
Error 404- Not Found
Error 405- Method Not Allowed
Error 406- Not acceptable
Error 407- Proxy Authentication Required (RFC 7235)
Error 408- Redirect Timeout
Error 409- Conflict ....and so on
But the most commonly known HTTP Errors that today we are discussing about are-
Error 400
Error 401
Error 403
Error 404
It indicates the Bad Request. When we use an incorrect application or request get corrupted somehow on the way.This error pop up on our Screen.Error 401
It indicates the unauthorized message. This happens generally when we try to access a restricted web page which we are not authorized to do. One of the reason could be failure attempt.Error 403
It indicates the forbidden error. It is as similar as Error 401 but the difference is in this case no login opportunity is available, example-accessing a forbidden directory on website.Error 404
This error is most popular and get recognized by most of the people. This error pop Up when we try to access a web page that doesn't exist. Reason behind it could be a broken link, a mistyped URL or trying to access a deleted request.


Comments
Post a Comment