cognalys 验证错误 550 和 551

cognalys verification error 550 and 551

我在我的应用程序中使用 cognalys sdk 进行用户验证,但我收到错误 551 和 550,它们未在他们的网站上列出,我不知道它们是什么,这是我使用的代码:

Cognalys.verifyMobileNumber(SignupActivity.this,"token",
                        "id","number",
                        new VerificationListner() {

                    @Override
                    public void onVerificationStarted() {

                        Toast.makeText(getApplicationContext(), "Started", Toast.LENGTH_LONG).show(); 

                    }

                    @Override
                    public void onVerificationFailed(ArrayList<String> errorList) {

                        for (String error : errorList) {
                            Log.d("abx", "error:"+error);
                        }
                        Toast.makeText(getApplicationContext(), "Failed", Toast.LENGTH_LONG).show();

                    }

                    @Override
                    public void onVerificationSuccess() {

                        Toast.makeText(getApplicationContext(), "Signed up successfully !", Toast.LENGTH_SHORT).show();
                        Intent intent = new Intent(SignupActivity.this, SetPictures.class);
                        startActivity(intent);
                        finish();

                    }
                });

我没有输入代码中的号码,而是接到了未接来电,但是 toast "failed" 在我的日志中显示错误 550,谁能告诉我这是什么意思?

错误代码:https://www.cognalys.com/androidlibraryerrors/ Android 库源代码:https://github.com/cognalys/cognalys-android-library

不要使用他们网站上的罐子。下载 github 上的那个并将其包含在您的项目中。那你得在他们的代码里改一下。

在 class CallListnerHelper 中,当有来电时,会将传入号码与他们发送的号码列表进行比较。在我的 Xperia Z3c 上,来电号码以 00 开头。他们发送的例外号码列表均以“+”开头。比较总是失败,所以你必须处理它。使用以下库:https://github.com/googlei18n/libphonenumber

我们现在用 + 和 00 发送号码 list/array。你们能不能请重新检查。我们应该知道问题是否已解决。感谢宝贵的更新