Legend:
Page
Library
Module
Module type
Parameter
Class
Class type
Source
Page
Library
Module
Module type
Parameter
Class
Class type
Source
Ezcurl_core
SourceCore signatures and implementation
Make a temporary client, call the function with it, then cleanup.
Metadata about a response from the server.
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.
type meth =
| GET
| POST of Curl.curlHTTPPost list
| PUT
| DELETE
| HEAD
| CONNECT
| OPTIONS
| TRACE
| PATCH
The HTTP method to use