requests.http

Undocumented in source.

Members

Classes

HTTPResponse
class HTTPResponse

Response - result of request execution.

MaxRedirectsException
class MaxRedirectsException
Undocumented in source.

Functions

fromJsonArrayToStr
string fromJsonArrayToStr(JSONValue v)
Undocumented in source. Be warned that the author may not have intended to support it.
fromJsonArrayToStr
string fromJsonArrayToStr(JSONValue v)
Undocumented in source. Be warned that the author may not have intended to support it.
httpTestServer
string httpTestServer()
Undocumented in source. Be warned that the author may not have intended to support it.
httpTestServer
string httpTestServer()
Undocumented in source. Be warned that the author may not have intended to support it.

Structs

HTTPRequest
struct HTTPRequest

Request. Configurable parameters: method - string, method to use (GET, POST, ...) headers - stringstring, add any additional headers you'd like to send. authenticator - class Auth, class to send auth headers. keepAlive - bool, set true for keepAlive requests. default true. maxRedirects - uint, maximum number of redirects. default 10. maxHeadersLength - size_t, maximum length of server response headers. default = 32KB. maxContentLength - size_t, maximun content length. delault - 0 = unlimited. bufferSize - size_t, send and receive buffer size. default = 16KB. verbosity - uint, level of verbosity(0 - nothing, 1 - headers, 2 - headers and body progress). default = 0. proxy - string, set proxy url if needed. default - null. cookie - Tuple Cookie, Read/Write cookie You can get cookie setted by server, or set cookies before doing request. timeout - Duration, Set timeout value for connect/receive/send.

Meta