java - 使用手机登录 Firebase 返回空指针

标签 java android firebase nullpointerexception firebase-authentication

我正在尝试按照 Firebase 的教程来允许用户使用他们的电话号码登录。我看过一个教程视频。我的所有代码看起来都是正确的,但是当我在我的测试设备上尝试时,我收到一个空指针错误。

 at com.google.android.gms.common.internal.Preconditions.checkNotNull(Unknown Source)
    at com.google.firebase.auth.PhoneAuthProvider.verifyPhoneNumber(Unknown Source)
    at studios.p9p.chatomatic.chat_o_matic.PhoneLogin.CheckPhoneNumber(PhoneLogin.java:92)
    at studios.p9p.chatomatic.chat_o_matic.PhoneLogin.access$000(PhoneLogin.java:29)
    at studios.p9p.chatomatic.chat_o_matic.PhoneLogin$1.onClick(PhoneLogin.java:52)

我的手机登录代码如下:

private EditText et_check_phone_number;
private EditText et_verify_code;
private Button btn_phone;
private Button btn_verify;
private String getPhoneNumber, getVerifactionCode;
private String mVerificationId = "";
private FirebaseAuth mAuth;
private FirebaseDatabase db;
private PhoneAuthProvider.OnVerificationStateChangedCallbacks mcallBacks;
private PhoneAuthProvider.ForceResendingToken mResendToken;
private ProgressDialog mloading;

@Override
protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_phone_login); 

  mAuth = FirebaseAuth.getInstance();
    initVariables();
    btn_phone.setOnClickListener(new View.OnClickListener() {
        @Override
        public void onClick(View v) {
            CheckPhoneNumber();
        }
    });

    btn_verify.setOnClickListener(new View.OnClickListener() {
        @Override
        public void onClick(View v) {
            VerifyPhoneNumber();
        }
    });
}


private void initVariables() {
    et_check_phone_number = findViewById(R.id.et_phonenumber);
    et_verify_code = findViewById(R.id.etvarifaction);
    btn_phone = findViewById(R.id.btn_phone_login);
    btn_verify = findViewById(R.id.btn_phone_verify);
    mloading = new ProgressDialog(this);
}

private void CheckPhoneNumber() {
    getPhoneNumber = et_check_phone_number.getText().toString();

    if (TextUtils.isEmpty(getPhoneNumber))
    {
        Toast.makeText(this, "Phone Number Field Cant Be Empty...", Toast.LENGTH_SHORT).show();
    } else{

                mloading.setTitle("Checking Your Phone Number");
                mloading.setMessage("It Gonna Take A Second...");
                mloading.setCanceledOnTouchOutside(false);
                mloading.setIcon(R.mipmap.ic_launcher);
                mloading.show();

                PhoneAuthProvider.getInstance().verifyPhoneNumber(
                        getPhoneNumber,        // Phone number to verify
                        60,                 // Timeout duration
                        TimeUnit.SECONDS,   // Unit of timeout
                        this,               // Activity (for callback binding)
                        mcallBacks);
            }
    }

    mcallBacks = new PhoneAuthProvider.OnVerificationStateChangedCallbacks() {
        @Override
        public void onVerificationCompleted(PhoneAuthCredential phoneAuthCredential) {
            signInWithPhoneAuthCredential(phoneAuthCredential);
        }

        @Override
        public void onVerificationFailed(FirebaseException e) {

            Toast.makeText(PhoneLogin.this, "Wrong Or Invalid Phone Number...", Toast.LENGTH_SHORT).show();
            btn_phone.setVisibility(View.VISIBLE);
            et_check_phone_number.setVisibility(View.VISIBLE);
            et_verify_code.setVisibility(View.INVISIBLE);
            btn_verify.setVisibility(View.INVISIBLE);
            if (e instanceof FirebaseAuthInvalidCredentialsException) {
                Toast.makeText(getBaseContext(), "Invalid Request " + e.toString(), Toast.LENGTH_SHORT).show();
            } else if (e instanceof FirebaseTooManyRequestsException) {
                Toast.makeText(getBaseContext(), "The SMS quota for the project has been exceeded " + e.toString(), Toast.LENGTH_SHORT).show();
            }


        }
        @Override
        public void onCodeSent(String verificationId,
                               PhoneAuthProvider.ForceResendingToken token) {
            // Save verification ID and resending token so we can use them later
            mVerificationId = verificationId;
            mResendToken = token;
            Toast.makeText(PhoneLogin.this, "Code Sent Please Check Your SMS...", Toast.LENGTH_SHORT).show();
            btn_phone.setVisibility(View.INVISIBLE);
            et_check_phone_number.setVisibility(View.INVISIBLE);
            et_verify_code.setVisibility(View.VISIBLE);
            btn_verify.setVisibility(View.VISIBLE);

        }
    };
}




private void VerifyPhoneNumber() {
    getVerifactionCode = et_verify_code.getText().toString();
    if (TextUtils.isEmpty(getVerifactionCode)){
        Toast.makeText(this, "Please Enter The Code Sent To Your SMS...", Toast.LENGTH_SHORT).show();
    }else{
        mloading.setTitle("Checking Your Verification code ");
        mloading.setMessage("Ill Be Back In A Jiffy...");
        mloading.setCanceledOnTouchOutside(false);
        mloading.setIcon(R.mipmap.ic_launcher);
        mloading.show();
        PhoneAuthCredential credential = PhoneAuthProvider.getCredential(mVerificationId, getVerifactionCode);
        signInWithPhoneAuthCredential(credential);
    }

}
private void signInWithPhoneAuthCredential(PhoneAuthCredential credential) {
    mAuth.signInWithCredential(credential)
            .addOnCompleteListener(this, new OnCompleteListener<AuthResult>() {
                @Override
                public void onComplete(@NonNull Task<AuthResult> task) {
                    if (task.isSuccessful()) {

                     mloading.dismiss();
                        Toast.makeText(PhoneLogin.this, "Login Successful...", Toast.LENGTH_SHORT).show();
                        Intent phoneloginIntent  =new Intent (getBaseContext(),Home_Screen.class);
                        phoneloginIntent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK|Intent.FLAG_ACTIVITY_CLEAR_TASK);
                        startActivity(phoneloginIntent);
                        finish();
                    } else {
                        String mesage = task.getException().toString();
                        Toast.makeText(PhoneLogin.this, "Error: " + mesage, Toast.LENGTH_SHORT).show();
                    }
                }
            });
}

我添加的“+44”试图查看我是否输入了错误的电话号码。我首先通过手动将 +44 添加到应用程序的编辑文本中进行了尝试,但出现了同样的错误。

编辑

因此,我删除了 Auth 提供程序中询问数字是否大于 9 位的行,因为它不起作用。我还运行了一个日志,看看它是否正确捕获了电话号码。

Log.i("Verify_Phone_Number",getPhoneNumber);
 2019-07-16 14:15:30.585 32055-32055/studios.p9p.chatomatic.chat_o_matic I/Verify_Phone_Number: +447******100 and it returns correctly 

编辑2

因此,在进一步测试中,如果我在输入电话号码之前单击 btn_phone 它可以正常工作,但如果我只是先将电话号码添加到编辑测试中然后按 thebtn_phone,它就会崩溃并在 logcat 中显示上述消息。

最佳答案

根据 Firebase Docs,您必须传递带国家代码的号码:

例如

phone number = +919090909090

见下图:

enter image description here

如您所见,即使是测试号码也需要国家代码。

当您的应用程序崩溃时,这意味着 Firebase PhoneAuthProvider.getInstance().verifyPhoneNumber() 没有获得带有国家代码的号码。

您可以在传递给 if 条件之前尝试以下代码:

if (et_check_phone_number.getText().toString().startsWith("+44"){
    getPhoneNumber = et_check_phone_number.getText().toString();
}else{
    getPhoneNumber = "+44"+et_check_phone_number.getText().toString();
}

以上代码将检查用户是否输入了您国家代码的前缀。

关于java - 使用手机登录 Firebase 返回空指针,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57055698/

相关文章:

java - Android Webview - 如果太大则调整图像大小

android - Android 上的应用程序是否授予默认权限?

android - 将可拆分数组列表从 MainActivity 传递到 Fragment

node.js - FirebaseFunctions Cors 编号 'Access-Control-Allow-Origin'

javascript - 使用 Promise 循环获取 Firebase 对象

java - 使用 maven 插件将静态资源上传到 Amazon s3 服务器

java - 使用 IntelliJ 调试器,是否可以继续进行集合迭代直到变量返回 null?

java - 如何在 android 中创建 excel 文件?

android - Listview 添加到同一行

java - 如何在android中使用two_line_list_item?