1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172
|
## http.request
The http.request module encapsulates all the functionality required to retrieve an HTTP document from a server.
### `new_from_uri(uri)` <!-- --> {#http.request.new_from_uri}
Creates a new `http.request` object from the given URI.
### `new_connect(uri, connect_authority)` <!-- --> {#http.request.new_connect}
Creates a new `http.request` object from the given URI that will perform a *CONNECT* request.
### `request.host` <!-- --> {#http.request.host}
The host this request should be sent to.
### `request.port` <!-- --> {#http.request.port}
The port this request should be sent to.
### `request.bind` <!-- --> {#http.request.bind}
The local outgoing address and optionally port to bind in the form of `"address[:port]"`. Default is to allow the kernel to choose an address+port.
IPv6 addresses may be specified via square bracket notation. e.g. `"127.0.0.1"`, `"127.0.0.1:50000"`, `"[::1]:30000"`.
This option is rarely needed. Supplying an address can be used to manually select the network interface to make the request from, while supplying a port is only really used to interoperate with firewalls or devices that demand use of a certain port.
### `request.tls` <!-- --> {#http.request.tls}
A boolean indicating if TLS should be used.
### `request.ctx` <!-- --> {#http.request.ctx}
An alternative `SSL_CTX*` to use.
If not specified, uses the default TLS settings (see [*http.tls*](#http.tls) for information).
### `request.sendname` <!-- --> {#http.request.sendname}
The TLS SNI host name used.
### `request.version` <!-- --> {#http.request.version}
The HTTP version to use; leave as `nil` to auto-select.
### `request.proxy` <!-- --> {#http.request.proxy}
Specifies the a proxy that the request will be made through.
The value should be a URI or `false` to turn off proxying for the request.
### `request.headers` <!-- --> {#http.request.headers}
A [*http.headers*](#http.headers) object of headers that will be sent in the request.
### `request.hsts` <!-- --> {#http.request.hsts}
The [*http.hsts*](#http.hsts) store that will be used to enforce HTTP strict transport security.
An attempt will be made to add strict transport headers from a response to the store.
Defaults to a shared store.
### `request.proxies` <!-- --> {#http.request.proxies}
The [*http.proxies*](#http.proxies) object used to select a proxy for the request.
Only consulted if `request.proxy` is `nil`.
### `request.cookie_store` <!-- --> {#http.request.cookie_store}
The [*http.cookie.store*](#http.cookie.store) that will be used to find cookies for the request.
An attempt will be made to add cookies from a response to the store.
Defaults to a shared store.
### `request.is_top_level` <!-- --> {#http.request.is_top_level}
A boolean flag indicating if this request is a "top level" request (See [RFC 6265bis-02 Section 5.2](https://tools.ietf.org/html/draft-ietf-httpbis-rfc6265bis-02#section-5.2))
Defaults to `true`
### `request.site_for_cookies` <!-- --> {#http.request.site_for_cookies}
A string containing the host that should be considered as the "site for cookies" (See [RFC 6265bis-02 Section 5.2](https://tools.ietf.org/html/draft-ietf-httpbis-rfc6265bis-02#section-5.2)), can be `nil` if unknown.
Defaults to `nil`.
### `request.follow_redirects` <!-- --> {#http.request.follow_redirects}
Boolean indicating if `:go()` should follow redirects.
Defaults to `true`.
### `request.expect_100_timeout` <!-- --> {#http.request.expect_100_timeout}
Number of seconds to wait for a 100 Continue response before proceeding to send a request body.
Defaults to `1`.
### `request.max_redirects` <!-- --> {#http.request.max_redirects}
Maximum number of redirects to follow before giving up.
Defaults to `5`.
Set to `math.huge` to not give up.
### `request.post301` <!-- --> {#http.request.post301}
Respect RFC 2616 Section 10.3.2 and **don't** convert POST requests into body-less GET requests when following a 301 redirect. The non-RFC behaviour is ubiquitous in web browsers and assumed by servers. Modern HTTP endpoints send status code 308 to indicate that they don't want the method to be changed.
Defaults to `false`.
### `request.post302` <!-- --> {#http.request.post302}
Respect RFC 2616 Section 10.3.3 and **don't** convert POST requests into body-less GET requests when following a 302 redirect. The non-RFC behaviour is ubiquitous in web browsers and assumed by servers. Modern HTTP endpoints send status code 307 to indicate that they don't want the method to be changed.
Defaults to `false`.
### `request:clone()` <!-- --> {#http.request:clone}
Creates and returns a clone of the request.
The clone has its own deep copies of the [`.headers`](#http.request.headers) and [`.h2_settings`](#http.request.h2_settings) fields.
The [`.tls`](#http.request.tls) and [`.body`](#http.request.body) fields are shallow copied from the original request.
### `request:handle_redirect(headers)` <!-- --> {#http.request:handle_redirect}
Process a redirect.
`headers` should be response headers for a redirect.
Returns a new `request` object that will fetch from new location.
### `request:to_uri(with_userinfo)` <!-- --> {#http.request:to_uri}
Returns a URI for the request.
If `with_userinfo` is `true` and the request has an `authorization` header (or `proxy-authorization` for a CONNECT request), the returned URI will contain a userinfo component.
### `request:set_body(body)` <!-- --> {#http.request:set_body}
Allows setting a request body. `body` may be a string, function or lua file object.
- If `body` is a string it will be sent as given.
- If `body` is a function, it will be called repeatedly like an iterator. It should return chunks of the request body as a string or `nil` if done.
- If `body` is a lua file object, it will be [`:seek`'d](http://www.lua.org/manual/5.3/manual.html#pdf-file:seek) to the start, then sent as a body. Any errors encountered during file operations **will be thrown**.
### `request:go(timeout)` <!-- --> {#http.request:timeout}
Performs the request.
The request object is **not** invalidated; and can be reused for a new request.
On success, returns the response [*headers*](#http.headers) and a [*stream*](#stream).
|