Legend:
Library
Module
Module type
Parameter
Class
Class type
Library
Module
Module type
Parameter
Class
Class type
val get :
?ctx:Cohttp_lwt_unix.Net.ctx ->
?headers:Request_ctx.Header.t ->
string ->
(Request_ctx.Response.t * string) Lwt.t
val post :
?ctx:Cohttp_lwt_unix.Net.ctx ->
?headers:Request_ctx.Header.t ->
?body:Cohttp_lwt.Body.t ->
string ->
(Request_ctx.Response.t * string) Lwt.t
val post_form :
?ctx:Cohttp_lwt_unix.Net.ctx ->
?headers:Request_ctx.Header.t ->
params:(string * string list) list ->
string ->
(Request_ctx.Response.t * string) Lwt.t
val request :
?ctx:Cohttp_lwt_unix.Net.ctx ->
?headers:Request_ctx.Header.t ->
?body:Cohttp_lwt.Body.t ->
Cohttp.Code.meth ->
string ->
(Request_ctx.Response.t * string) Lwt.t
val get_json :
?ctx:Cohttp_lwt_unix.Net.ctx ->
?headers:Request_ctx.Header.t ->
string ->
(Request_ctx.Response.t * Ezjsonm.t) Lwt.t
val post_json :
?ctx:Cohttp_lwt_unix.Net.ctx ->
?headers:Request_ctx.Header.t ->
?body:Cohttp_lwt.Body.t ->
string ->
(Request_ctx.Response.t * Ezjsonm.t) Lwt.t
val post_form_json :
?ctx:Cohttp_lwt_unix.Net.ctx ->
?headers:Request_ctx.Header.t ->
?params:(string * string list) list ->
string ->
(Request_ctx.Response.t * Ezjsonm.t) Lwt.t