You can search for identifiers within the package.
in-package search v0.2.0
Refresh_token credentials correspond to Reddit's "web app" and "installed-app" app types.
Refresh_token
PRAW's documentation on refresh tokens for advice on obtaining a refresh token, which is currently outside the scope of this project.
The RFC 6749 section describing the corresponding access token request.
type t = {
client_id : string;
client_secret : string option;
This field is present for web apps and absent for installed apps.
refresh_token : string;
}
include Ppx_sexp_conv_lib.Sexpable.S with type t := t
val t_of_sexp : Sexplib0__.Sexp.t -> t
val sexp_of_t : t -> Sexplib0__.Sexp.t