KeycloakAuthenticator constructor

KeycloakAuthenticator(
  1. String? identifier,
  2. String? clientId,
  3. String? clientSecret,
  4. String? tokenUrl,
  5. String? baseUrl,
  6. String? redirectUrl,
  7. List<String>? scopes,
)

Implementation

KeycloakAuthenticator(String? identifier, String? clientId, String? clientSecret, String? tokenUrl, String? baseUrl, String? redirectUrl, List<String>? scopes)
    : super(identifier, clientId, clientSecret, tokenUrl, baseUrl, redirectUrl) {
  this.scope = scopes;
  useEmbeddedBrowser = false;
  // Disable SSO to remove Apples user consent dialog
  useSSO = false;
}