Please include the following information in your post:
- Which SDK this is regarding: auth0-android
- SDK Version: 2.5.0
- **Platform Version: Android 12
- Code Snippets/Error Messages/Supporting Details/Screenshots:
try {
client
.passwordlessWithSMS(phoneNumber, passwordlessType = PasswordlessType.CODE)
.execute()
completion(true)
} catch (e: AuthenticationException) {
Log.e("Auth Error", e.getDescription())
Log.e("Auth Error", e.getCode())
completion(false)
}
Yesterday it worked perfectly, for some reason when I’m executing this function I receive this error:
Received error with code a0.sdk.internal_error.unknown
This is related to the Android app, my iOS app works perfectly.
Also, trying the API using HTTP request from postman for passwordless also works.