Is there a way to use Passwordless login/registration type using Android SDK with OIDC Conformant Mode enabled? I was following the instructions from Auth0 Android Github:
authentication
.loginWithEmail("info@auth0.com", "123456", "my-passwordless-connection")
.start(new BaseCallback<Credentials, AuthenticationException>() {
@Override
public void onSuccess(Credentials payload) {
//Logged in!
}
@Override
public void onFailure(AuthenticationException error) {
//Error!
}
});
But I’m getting 404 from oauth/ro endpoint, in docs this endpoint is described as deprecated. Is there a way to use passwordless with correct endpoint?
I was setting the isOIDCConformant
flag both to true and to false but it does nothing.