You can search for identifiers within the package.
in-package search v0.2.0
Types and functions to work with the token endpoint
type t = {
grant_type : string;
scope : Scopes.t list;
code : string;
client_id : string;
client_secret : string option;
redirect_uri : Uri.t;
}
A refresh token request
val make : grant_type:string -> scope:Scopes.t list -> redirect_uri:Uri.t -> code:string -> Client.t -> t
val to_body_string : t -> string
Creates the body for the token request
val of_body_string : string -> (t, [> `Msg of string ]) result
Parses a request body into a t