package ezcurl
Legend:
Page
Library
Module
Module type
Parameter
Class
Class type
Source
Page
Library
Module
Module type
Parameter
Class
Class type
Source
Module Ezcurl_coreSource
Core signatures and implementation
Make a temporary client, call the function with it, then cleanup.
Metadata about a response from the server.
Source
type response = {code : int;(*Response code. See https://developer.mozilla.org/en-US/docs/Web/HTTP/Status
*)headers : (string * string) list;(*Response headers
*)body : string;(*Response body, or
*)""info : response_info;(*Information about the response
*)
}Response for a given request.
Source
type meth = | GET| POST of Curl.curlHTTPPost list| PUT| DELETE| HEAD| CONNECT| OPTIONS| TRACE| PATCH
The HTTP method to use