我在使用国际版做测试,应用名称是zpdatatech, 代码如下,
LCSMSOption option = new LCSMSOption();
option.setTtl(10);
option.setTemplateName("zpdatatech");
//option.setSignatureName(getString(R.string.app_name));
LCSMS.requestSMSCodeInBackground(mMobileNumber, option).subscribe(new Observer() {
@Override
public void onSubscribe(Disposable disposable) {
}
@Override
public void onNext(LCNull avNull) {
mError1TextView.setVisibility(View.INVISIBLE);
}
@Override
public void onError(Throwable throwable) {
mError1TextView.setVisibility(View.VISIBLE);
mError1TextView.setText(throwable.getLocalizedMessage());
//mError1TextView.setText(R.string.error_sms_code_send_fail);
}
@Override
public void onComplete() {
}
我在控制台设置了一个模板:您的验证码为{{{code}}},{{{ttl}}}分钟内有效,名称是zpdatatech, 代码运行每次都进入onError, 显示错误信息。请问是什么问题?