Oidc.Parameters
Auth parameters
type error = [
| `Unauthorized_client of Client.t |
| `Missing_client |
| `Invalid_scope of string list |
| `Invalid_redirect_uri of string |
| `Missing_parameter of string |
| `Invalid_display of string |
| `Invalid_prompt of string |
| `Invalid_parameters |
]
Possible states when parsing the query
val to_query : t -> (string * string list) list
Used when starting a authentication
val to_yojson : t -> Yojson.Safe.t