authenticate

fun authenticate(url: String, passkeyId: String, callback: (Result<AuthenticateResponse>) -> Unit)

Authenticate a user.

Parameters

url

URL used to authenticate

passkeyId

The ID of the passkey with which to authenticate.


fun authenticate(url: String, passkeyId: String, dispatcher: CoroutineDispatcher = Dispatchers.Default): Flow<Result<AuthenticateResponse>>

Authenticate a user.

Return

Flow of AuthenticateResponse or Throwable

Parameters

url

URL used to authenticate

passkeyId

The ID of the passkey with which to authenticate.