Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Firebase UI Email Link signin intent extra is null

The following 3 functions are used to set up email and other auth checks (called in order)

    private void buildSignInIntentBuilder() {

        ActionCodeSettings actionCodeSettings = ActionCodeSettings.newBuilder()
                        .setAndroidPackageName(getString(R.string.packageName), true, null)
                        .setHandleCodeInApp(true)
                        .setUrl(getString(R.string.dynamic_link_url))
                        .build();

        List<AuthUI.IdpConfig> providers = Arrays.asList(
                new AuthUI.IdpConfig.EmailBuilder()
                        .enableEmailLinkSignIn()
                        .setActionCodeSettings(actionCodeSettings)
                        .build(),
                // new AuthUI.IdpConfig.EmailBuilder().setRequireName(false).build(),
                new AuthUI.IdpConfig.PhoneBuilder()
                        .build(),
                new AuthUI.IdpConfig.GoogleBuilder()
                        .build(),
                new AuthUI.IdpConfig.FacebookBuilder()
                        .build());

        signInIntentBuilder = AuthUI.getInstance()
                .createSignInIntentBuilder()
                .setIsSmartLockEnabled(false)
                .setAvailableProviders(providers)
                .setLogo(R.drawable.icon_forget_me_not_1);
    }

    private void catchEmailLinkSignIn() {
        Log.d(TAG, "Intent: " + getIntent().getExtras());
        if (AuthUI.canHandleIntent(getIntent())) {
            if (getIntent().getExtras() == null) {
                return;
            }

            String link = getIntent().getExtras().getString(ExtraConstants.EMAIL_LINK_SIGN_IN);
            Log.d(TAG, "link: " + link);
            if (link != null) {
                signInIntentBuilder.setEmailLink(link);
            }
        }
    }

    private void createCheckAndSigninListener() {
        // set firebase sign in listener
        mAuthStateListner = firebaseAuth -> {
            // Already logged in
            FirebaseUser user = firebaseAuth.getCurrentUser();
            if (user != null) {
                Log.d(TAG, "user already signed in");
                // Check user even if signed in to register him to database (if haven't)
                FirebaseAuthHelper.getInstance().checkRegisterUser(user, this, CHECK_USER_DB);
            } else {
                Log.d(TAG, "user hasn't signed in");
                // Signed out or hasn't logged in
                startActivityForResult(
                        signInIntentBuilder
                                .build(),
                        RC_SIGN_IN
                );

            }
        };
    }

I have set up a dynamic link with firebase hosting. And being able to redirect into the same activity upon clicking the received email link.

However,

String link = getIntent().getExtras().getString(ExtraConstants.EMAIL_LINK_SIGN_IN);
Log.d(TAG, "link: " + link); // --> produces "link: null"

Shows despite successfully getting a intent, there is no EMAIL_LINK_SIGNIN extra in the getExtras(). I spend few hours looking into the source code of FirebaseUi, but I didn't find where the constant EMAIL_LINK_SIGN_IN is used and how is the intent from dynamic link parsed.

Any idea how to fix this problem is appreciated. I had already spent a whole day trying to figure this out.

like image 450
Dogemore Avatar asked Oct 12 '19 01:10

Dogemore


1 Answers

Instead of using String link = getIntent().getExtras().getString(ExtraConstants.EMAIL_LINK_SIGN_IN); use getIntent().getData().toString(); instead.

like image 77
Ale4303 Avatar answered Sep 19 '22 08:09

Ale4303