Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

fabric digits returns a null object of phoneNumber after OTP verification on android app

In the success method, I've been trying to use the phoneNumber but it's a null object even after successful OTP check on my android app. Please let me know how can I get the phoneNumber after fabric verification to use it for user registration on my app.

digitsButton = (DigitsAuthButton) findViewById(R.id.auth_button);
    digitsButton.setCallback(new AuthCallback() {
        @Override
        public void success(DigitsSession session,
                            String phoneNumber) {
            // Do something with the session
            Toast.makeText(WelcomeActivity.this,"Registration Successful",Toast.LENGTH_SHORT).show();
        }

        @Override
        public void failure(DigitsException exception) {
            // Do something on failure
            Toast.makeText(WelcomeActivity.this,"Registration Failed",Toast.LENGTH_SHORT).show();
        }
    });
like image 605
ddheader Avatar asked Jul 28 '15 14:07

ddheader


1 Answers

I'm not sure if it's a bug, but if there's already an active session the number will not be returned. If you're authenticating anyway, you've probably detected a missing existing session. If you'd like to force this number to show up - call

Digits.getSessionManager().clearActiveSession(); 

before setting callback.

like image 174
SIr Codealot Avatar answered Nov 10 '22 00:11

SIr Codealot