package ez_api

  1. Overview
  2. Docs

Parameters

module _ : Interface

Signature

include EzReq_S.CURRENT
val get0 : ?post:bool -> ?headers:(string * string) list -> ?params:(EzAPI.Param.t * EzAPI.param_value) list -> ?msg:string -> ?error:EzReq_S.error_handler -> EzAPI.base_url -> ('output, 'error, [< EzAPI.Security.scheme ]) EzAPI.service0 -> (('output, 'error) result -> unit) -> unit
val get1 : ?post:bool -> ?headers:(string * string) list -> ?params:(EzAPI.Param.t * EzAPI.param_value) list -> ?msg:string -> ?error:EzReq_S.error_handler -> EzAPI.base_url -> ('arg, 'output, 'error, [< EzAPI.Security.scheme ]) EzAPI.service1 -> 'arg -> (('output, 'error) result -> unit) -> unit
val get2 : ?post:bool -> ?headers:(string * string) list -> ?params:(EzAPI.Param.t * EzAPI.param_value) list -> ?msg:string -> ?error:EzReq_S.error_handler -> EzAPI.base_url -> ('arg1, 'arg2, 'output, 'error, [< EzAPI.Security.scheme ]) EzAPI.service2 -> 'arg1 -> 'arg2 -> (('output, 'error) result -> unit) -> unit
val post0 : ?headers:(string * string) list -> ?params:(EzAPI.Param.t * EzAPI.param_value) list -> ?msg:string -> ?url_encode:bool -> ?error:EzReq_S.error_handler -> input:'input -> EzAPI.base_url -> ('input, 'output, 'error, [< EzAPI.Security.scheme ]) EzAPI.post_service0 -> (('output, 'error) result -> unit) -> unit
val post1 : ?headers:(string * string) list -> ?params:(EzAPI.Param.t * EzAPI.param_value) list -> ?msg:string -> ?url_encode:bool -> ?error:EzReq_S.error_handler -> input:'input -> EzAPI.base_url -> ('arg, 'input, 'output, 'error, [< EzAPI.Security.scheme ]) EzAPI.post_service1 -> 'arg -> (('output, 'error) result -> unit) -> unit
val post2 : ?headers:(string * string) list -> ?params:(EzAPI.Param.t * EzAPI.param_value) list -> ?msg:string -> ?url_encode:bool -> ?error:EzReq_S.error_handler -> input:'input -> EzAPI.base_url -> ('arg1, 'arg2, 'input, 'output, 'error, [< EzAPI.Security.scheme ]) EzAPI.post_service2 -> 'arg1 -> 'arg2 -> (('output, 'error) result -> unit) -> unit
val get : ?meth:EzAPI.Meth.all -> ?headers:(string * string) list -> ?msg:string -> ?error:EzReq_S.error_handler -> EzAPI.url -> (string -> unit) -> unit
val post : ?meth:EzAPI.Meth.all -> ?content_type:string -> ?content:string -> ?headers:(string * string) list -> ?msg:string -> ?error:EzReq_S.error_handler -> EzAPI.url -> (string -> unit) -> unit
val request : ?headers:(string * string) list -> ?params:(EzAPI.Param.t * EzAPI.param_value) list -> ?msg:string -> ?post:bool -> ?url_encode:bool -> ?error:EzReq_S.error_handler -> input:'input -> EzAPI.base_url -> ('args, 'input, 'output, 'error, [< EzAPI.Security.scheme ]) EzAPI.service -> 'args -> (('output, 'error) result -> unit) -> unit
val init : unit -> unit
val add_hook : (unit -> unit) -> unit
val add_reply_hook : (unit -> unit) -> unit