Search code examples
httprequesthttprequestresponsehttpresponse

Are there different methods to send a http response?


We all know that a http-request has a method (GET/POST/etc.). I want to know are there any specific methods to a http-response too?


Solution

  • NO.

    The method is a property of an HTTP request message. It does not appear in the response message.

    See RFC 7230.