HTTPGenericRequest
is the parent of the Net::HTTPRequest
class. Do not use this directly; use a subclass of Net::HTTPRequest
.
Mixes in the Net::HTTPHeader
module to provide easier access to HTTP headers.
This class is the base class for Net::HTTP request classes; it wraps together the request path and the request headers.
The class should not be used directly; instead you should use its subclasses.
Subclasses for HTTP requests:
Subclasses for WebDAV requests:
Parent class for redirection (3xx) HTTP
response classes.
A redirection response indicates the client must take additional action to complete the request.
References:
Response class for Switching Protocol
responses (status code 101).
The <tt>Switching Protocol<tt> response indicates that the server has received a request to switch protocols, and has agreed to do so.
References:
Response class for Non-Authoritative Information
responses (status code 203).
The Non-Authoritative Information
response indicates that the server is a transforming proxy (such as a Web accelerator) that received a 200 OK response from its origin, and is returning a modified version of the origin’s response. See 203 Non-Authoritative Information.
Response class for Permanent Redirect
responses (status code 308).
This and all future requests should be directed to the given URI
. See 308 Permanent Redirect.
Response class for Bad Request
responses (status code 400).
The server cannot or will not process the request due to an apparent client error. See 400 Bad Request.
Response class for Payment Required
responses (status code 402).
Reserved for future use. See 402 Payment Required.
Response class for Proxy Authentication Required
responses (status code 407).
The client must first authenticate itself with the proxy. See 407 Proxy Authentication Required.
Response class for Request Timeout
responses (status code 408).
The server timed out waiting for the request. See 408 Request Timeout.
Response class for Request Timeout
responses (status code 408).
The server timed out waiting for the request. See 408 Request Timeout.
Response class for Length Required
responses (status code 411).
The request did not specify the length of its content, which is required by the requested resource. See 411 Length Required.
Response class for Range Not Satisfiable
responses (status code 416).
The request entity has a media type which the server or resource does not support. See 416 Range Not Satisfiable.
Response class for Upgrade Required
responses (status code 426).
The client should switch to the protocol given in the Upgrade header field. See 426 Upgrade Required.
Response class for Unavailable For Legal Reasons
responses (status code 451).
A server operator has received a legal demand to deny access to a resource or to a set of resources that includes the requested resource. See 451 Unavailable For Legal Reasons.
Response class for Internal Server Error
responses (status code 500).
An unexpected condition was encountered and no more specific message is suitable. See 500 Internal Server Error.
Raised on redirection, only occurs when redirect
option for HTTP is false
.