registerOidcConfigTest
abstract suspend fun registerOidcConfigTest(input: RegisterOidcConfigTestRequest): RegisterOidcConfigTestResponse
Tests an OpenID Connect (OIDC) configuration for a Wickr network by validating the connection to the identity provider and retrieving its supported capabilities.
Samples
fun main() {
//sampleStart
// Test OIDC config successfully
val resp = wickrClient.registerOidcConfigTest {
networkId = "12345678"
issuer = "https://login.example.com"
scopes = "openid profile email"
}
//sampleEnd
}