HTTP Status Codes
While learning RestApi I got to know about HTTP status codes which is very important to learn. We used to come across few HTTP status codes once daily, and the famous one which one every one knows is 404 Page Not Found but don't know which family they belong When we send a request to HTTP it will reply us back. It replied to you but if you did not know what does that mean then you wont be able to resolve the issue which you are facing. The status code is very important because it tells how to interpret the server response. There are 5 categories in Status Code: a) 1xx: Informational Messages b) 2xx: Successful c) 3xx: Redirection d) 4xx: Client Error e) 5xx: Server Error 1xx: Informational Messages :- This class of codes was introduced in HTTP/1.1. The server can send a Except: 100-continue message telling the client to continue sending the remainder of the request, or ignore if it has already sent it. 2xx Successful :- This tells t...

