fetchUserAuthenticationUrls

abstract fun fetchUserAuthenticationUrls(login: String, lang: String = Locale.getDefault().toLanguageTag(), listener: RainbowListener<AuthenticationUrl, Unit>)

Enables you to retrieve the authentication method linked to a user.

Users can log in with their login and password or have an SSO connection configured. This method provides information on how the user can connect to Rainbow.

Parameters

login

The user's login credentials.

lang

The user's preferred language, represented as a BCP47 - RFC5646 language tag. The default value is retrieved from the device.

listener

RainbowListener<AuthenticationUrl, Unit> (optional) callback invoked upon completion of the operation. The AuthenticationUrl object contains information about the user's authentication method.

See also

AuthenticationUrl