fetchUserAuthenticationUrls
abstract suspend fun fetchUserAuthenticationUrls( login: String, lang: String = Locale.getDefault().toLanguageTag()): RainbowResult<AuthenticationUrl>
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.
Return
RainbowResult<AuthenticationUrl> callback invoked upon completion of the operation. The AuthenticationUrl object contains information about the user's authentication method.
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.
See also
AuthenticationUrl