Module Values.RegisterOidcConfigTestRequestSource

Tests an OpenID Connect (OIDC) configuration for a Wickr network by validating the connection to the identity provider and retrieving its supported capabilities.

Sourcetype nonrec t = {
  1. networkId : NetworkId.t;
    (*

    The ID of the Wickr network for which the OIDC configuration will be tested.

    *)
  2. extraAuthParams : GenericString.t option;
    (*

    Additional authentication parameters to include in the test (optional).

    *)
  3. issuer : GenericString.t;
    (*

    The issuer URL of the OIDC provider to test.

    *)
  4. scopes : GenericString.t;
    (*

    The OAuth scopes to test with the OIDC provider.

    *)
  5. certificate : GenericString.t option;
    (*

    The CA certificate for secure communication with the OIDC provider (optional).

    *)
}
Sourceval context_ : string
Sourceval make : ?extraAuthParams:??? -> ?certificate:??? -> networkId:NetworkId.t -> issuer:GenericString.t -> scopes:GenericString.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of NetworkId.t ]) list ]
Sourceval to_query : t -> Awso.Client.Query.t
Sourceval of_xml : Awso.Xml.t -> t
Sourceval of_string : string -> t
Sourceval of_json : Yojson.Safe.t -> t
Sourceval to_json : t -> Yojson.Safe.t