Module Values.GetOidcInfoRequestSource

Retrieves the OpenID Connect (OIDC) configuration for a Wickr network, including SSO settings and optional token information if access token parameters are provided.

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

    The ID of the Wickr network whose OIDC configuration will be retrieved.

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

    The OAuth client ID for retrieving access tokens (optional).

    *)
  3. code : GenericString.t option;
    (*

    The authorization code for retrieving access tokens (optional).

    *)
  4. grantType : GenericString.t option;
    (*

    The OAuth grant type for retrieving access tokens (optional).

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

    The redirect URI for the OAuth flow (optional).

    *)
  6. url : GenericString.t option;
    (*

    The URL for the OIDC provider (optional).

    *)
  7. clientSecret : SensitiveString.t option;
    (*

    The OAuth client secret for retrieving access tokens (optional).

    *)
  8. codeVerifier : GenericString.t option;
    (*

    The PKCE code verifier for enhanced security in the OAuth flow (optional).

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

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

    *)
}
Sourceval context_ : string
Sourceval make : ?clientId:??? -> ?code:??? -> ?grantType:??? -> ?redirectUri:??? -> ?url:??? -> ?clientSecret:??? -> ?codeVerifier:??? -> ?certificate:??? -> networkId:NetworkId.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