RestInterfaceClient.request

Json request(HTTPMethod verb, string name, const scope ref InetHeaderMap hdrs, string query, string body_, ref InetHeaderMap reqReturnHdrs, ref InetHeaderMap optReturnHdrs) const

Perform a request to the interface using the given parameters.

Parameters

verbKind of request (See HTTPMethod enum).
nameLocation to request. For a request on https://github.com/rejectedsoftware/vibe.d/issues?q=author%3ASantaClaus, it will be '/rejectedsoftware/vibe.d/issues'.
hdrsThe headers to send. Some field might be overriden (such as Content-Length). However, Content-Type will NOT be overriden.
queryThe encoded query string. For a request on https://github.com/rejectedsoftware/vibe.d/issues?q=author%3ASantaClaus, it will be 'author%3ASantaClaus'.
body_The body to send, as a string. If a Content-Type is present in hdrs, it will be used, otherwise it will default to the generic type "application/json".
reqReturnHdrsA map of required return headers. To avoid returning unused headers, nothing is written to this structure unless there's an (usually empty) entry (= the key exists) with the same key. If any key present in reqReturnHdrs is not present in the response, an Exception is thrown.
optReturnHdrsA map of optional return headers. This behaves almost as exactly as reqReturnHdrs, except that non-existent key in the response will not cause it to throw, but rather to set this entry to 'null'.

Returns

The Json object returned by the request