Backend Development
HTTP examples
Request Line Every HTTP request begins with the request line.This consists of the HTTP method, the requested resource and the HTTP protocol version. GET /home.html HTTP/1.1 In this example, GET is the HTTP method, /home.html is the resource requested and HTTP 1.1 is the protocol used. HTTP Methods HTTP methods indicate the action that Read more…