EzcurlSourceinclude module type of struct include Ezcurl_core endConfiguration for the client.
A client, i.e. a cURL instance. The wrapping record has been present since 0.3
val make :
?set_opts:(Curl.t -> unit) ->
?cookiejar_file:string ->
?enable_session_cookies:bool ->
unit ->
tCreate a new client.
Make a temporary client, call the function with it, then cleanup.
Set no_signal default value for each new client instance. Default is true. See CURLOPT_NOSIGNAL.
Cookie handling.
Metadata about a response from the server.
type 'body response = 'body Ezcurl_core.response = {code : int;Response code. See https://developer.mozilla.org/en-US/docs/Web/HTTP/Status
*)headers : (string * string) list;Response headers
*)body : 'body;Response body, or ""
info : response_info;Information about the response
*)}Response for a given request.
val pp_response_with :
(Format.formatter -> 'a -> unit) ->
Format.formatter ->
'a response ->
unittype meth = Ezcurl_core.meth = | GET| POST of Curl.curlHTTPPost list| PUT| DELETE| HEAD| CONNECT| OPTIONS| TRACE| PATCHThe HTTP method to use
include sig ... endval http :
?tries:int ->
?client:Ezcurl_core.t ->
?config:Ezcurl_core.Config.t ->
?range:string ->
?content:[ `String of string | `Write of bytes -> int -> int ] ->
?headers:(string * string) list ->
url:string ->
meth:Ezcurl_core.meth ->
unit ->
(string Ezcurl_core.response, Curl.curlCode * string) result ioval http_stream :
?tries:int ->
?client:Ezcurl_core.t ->
?config:Ezcurl_core.Config.t ->
?range:string ->
?content:[ `String of string | `Write of bytes -> int -> int ] ->
?headers:(string * string) list ->
url:string ->
meth:Ezcurl_core.meth ->
write_into:input_stream ->
unit ->
(unit Ezcurl_core.response, Curl.curlCode * string) result ioval get :
?tries:int ->
?client:Ezcurl_core.t ->
?config:Ezcurl_core.Config.t ->
?range:string ->
?headers:(string * string) list ->
url:string ->
unit ->
(string Ezcurl_core.response, Curl.curlCode * string) result ioval put :
?tries:int ->
?client:Ezcurl_core.t ->
?config:Ezcurl_core.Config.t ->
?headers:(string * string) list ->
url:string ->
content:[ `String of string | `Write of bytes -> int -> int ] ->
unit ->
(string Ezcurl_core.response, Curl.curlCode * string) result ioval post :
?tries:int ->
?client:Ezcurl_core.t ->
?config:Ezcurl_core.Config.t ->
?headers:(string * string) list ->
?content:[ `String of string | `Write of bytes -> int -> int ] ->
params:Curl.curlHTTPPost list ->
url:string ->
unit ->
(string Ezcurl_core.response, Curl.curlCode * string) result io