Passkey
1. isUserExist
fun main() {
// Check if the user "john_doe" exists
isUserExist("john_doe").collect { exists ->
println("User exists: $exists")
}
}2. authenticate
fun main() {
// Authenticate user "john_doe" within the current activity context
authenticate("john_doe", this).collect { response ->
println("Authentication successful: $response")
}
}
3. register
Last updated