Values.RegisterOidcConfigTestResponseSourceTests an OpenID Connect (OIDC) configuration for a Wickr network by validating the connection to the identity provider and retrieving its supported capabilities.
type nonrec t = {tokenEndpoint : GenericString.t option;The token endpoint URL discovered from the OIDC provider.
*)userinfoEndpoint : GenericString.t option;The user info endpoint URL discovered from the OIDC provider.
*)responseTypesSupported : StringList.t option;The OAuth response types supported by the OIDC provider.
*)scopesSupported : StringList.t option;The OAuth scopes supported by the OIDC provider.
*)issuer : GenericString.t option;The issuer URL confirmed by the OIDC provider.
*)endSessionEndpoint : GenericString.t option;The end session endpoint URL for logging out users from the OIDC provider.
*)logoutEndpoint : GenericString.t option;The logout endpoint URL for terminating user sessions.
*)grantTypesSupported : StringList.t option;The OAuth grant types supported by the OIDC provider.
*)revocationEndpoint : GenericString.t option;The token revocation endpoint URL for invalidating tokens.
*)tokenEndpointAuthMethodsSupported : StringList.t option;The authentication methods supported by the token endpoint.
*)microsoftMultiRefreshToken : Boolean.t option;Indicates whether the provider supports Microsoft multi-refresh tokens.
*)}type nonrec error = [ | `BadRequestError of BadRequestError.t| `ForbiddenError of ForbiddenError.t| `InternalServerError of InternalServerError.t| `RateLimitError of RateLimitError.t| `ResourceNotFoundError of ResourceNotFoundError.t| `ValidationError of ValidationError.t| `Unknown_operation_error of string * string option ]val make :
?tokenEndpoint:??? ->
?userinfoEndpoint:??? ->
?responseTypesSupported:??? ->
?scopesSupported:??? ->
?issuer:??? ->
?authorizationEndpoint:??? ->
?endSessionEndpoint:??? ->
?logoutEndpoint:??? ->
?grantTypesSupported:??? ->
?revocationEndpoint:??? ->
?tokenEndpointAuthMethodsSupported:??? ->
?microsoftMultiRefreshToken:??? ->
unit ->
tval error_of_json :
string ->
Yojson.Safe.t ->
[> `BadRequestError of BadRequestError.t
| `ForbiddenError of ForbiddenError.t
| `InternalServerError of InternalServerError.t
| `RateLimitError of RateLimitError.t
| `ResourceNotFoundError of ResourceNotFoundError.t
| `UnauthorizedError of UnauthorizedError.t
| `Unknown_operation_error of string * string option
| `ValidationError of ValidationError.t ]val error_of_xml :
string ->
Awso.Xml.t ->
[> `BadRequestError of BadRequestError.t
| `ForbiddenError of ForbiddenError.t
| `InternalServerError of InternalServerError.t
| `RateLimitError of RateLimitError.t
| `ResourceNotFoundError of ResourceNotFoundError.t
| `UnauthorizedError of UnauthorizedError.t
| `Unknown_operation_error of string * string option
| `ValidationError of ValidationError.t ]val to_value :
t ->
[> `Structure of
(string
* [> `Boolean of Boolean.t
| `List of [> `String of GenericString.t ] list
| `String of GenericString.t ])
list ]