使用MobTech平台实现免费的短信验证码验证功能

一、技术概述

使用短信验证码验证注册、登录和找回密码几乎是每一个APP、甚至是许多网页所需要支持的技术。对于我们学生完成非商用项目,往往需要一个免费提供短信验证码技术支持的SDK,而许多平台需要收费,很难找到适合的平台。

二、技术详述

1.在MobTech中获取App Key和App Secret

(1)首先进入MobTech官网:https://www.mob.com/

(2)登陆过后,选择开发者服务,点击SMSSDK。

使用MobTech平台实现免费的短信验证码验证功能

(3)点击开始使用

使用MobTech平台实现免费的短信验证码验证功能

(4)点击创建应用,按要求填写信息后创建,并接入SMSSDK

使用MobTech平台实现免费的短信验证码验证功能

(5)随后点击创建好的应用查看应用的App Key和App Secret

使用MobTech平台实现免费的短信验证码验证功能

2.实现短信验证码验证功能

这里给出MobTech的开发文档链接:https://www.mob.com/wiki/detailed?wiki=SMSSDK_for_Android_kuaisujicheng&id=23

(1)在项目中相应位置插入脚本和MobSDK插件和扩展

使用MobTech平台实现免费的短信验证码验证功能 对应项目中插入脚本: 使用MobTech平台实现免费的短信验证码验证功能 对应项目中插入MobSDK插件和扩展: 使用MobTech平台实现免费的短信验证码验证功能 脚本代码: ``` buildscript { repositories { jcenter() }
dependencies {
    // 注册MobSDK
    classpath "com.mob.sdk:MobSDK:2018.0319.1724"
}

}

MobSDK插件和扩展:

apply plugin: 'com.mob.sdk'

MobSDK {
appKey "替换为mob官方申请的appkey"
appSecret "替换为mob官方申请的appkey对应的appSecret"
SMSSDK {}
}

####(2)功能实现
**i)短信验证按钮60s计时**
Handler hd = new Handler() {
    @Override
    public void handleMessage(Message msg) {
        if (msg.what == CODE_REPEAT) {
            btn_check.setEnabled(true);
            btn_sure.setEnabled(true);
            tm.cancel();//取消任务
            tt.cancel();//取消任务
            TIME = 60;//时间重置
            btn_check.setText("重新发送验证码");
        }else {
            btn_check.setText(TIME + "重新发送验证码");
        }
    }
};
**ii)回调**
EventHandler eh=new EventHandler(){
    @Override
    public void afterEvent(int event, int result, Object data) {
        if (result == SMSSDK.RESULT_COMPLETE) {
            if (event == SMSSDK.EVENT_SUBMIT_VERIFICATION_CODE) {
                phoneNum = et_phonenum.getText().toString();
                password = et_password.getText().toString();
                userName = et_userName.getText().toString();
                //
                //这里将数据userName password phoneNum发送到数据库
                //
                //
                Intent intent = new Intent(RegisterActivity.this,MainActivity.class);
                intent.putExtra("phone",phoneNum);
                startActivity(intent);
                toast("验证成功");
            }else if (event == SMSSDK.EVENT_GET_VERIFICATION_CODE){       //获取验证码成功
                toast("获取验证码成功");
            }else if (event ==SMSSDK.EVENT_GET_SUPPORTED_COUNTRIES){//如果你调用了获取国家区号类表会在这里回调
                //返回支持发送验证码的国家列表
            }
        }else{//错误等在这里(包括验证失败)
            //错误码请参照http://wiki.mob.com/android-api-错误码参考/这里我就不再继续写了
            toast("验证码不匹配,请重新输入验证码");
        }
    }
};
**iii)弹窗确认下发**
private void alterWarning() {
    //构造器
    AlertDialog.Builder builder = new AlertDialog.Builder(this);
    builder.setTitle("提示"); //设置标题
    builder.setMessage("我们将要发送到" + phone + "验证"); //设置内容
    builder.setIcon(R.mipmap.ic_launcher);//设置图标,图片id即可
    builder.setPositiveButton("确定", new DialogInterface.OnClickListener() {
        //设置确定按钮
        @Override
        public void onClick(DialogInterface dialog, int which) {
            dialog.dismiss(); //关闭dialog
            //通过sdk发送短信验证(请求获取短信验证码,在监听(eh)中返回)
            SMSSDK.getVerificationCode(country, phone);
            //做倒计时操作
            Toast.makeText(RegisterActivity.this, "已发送" + which, Toast.LENGTH_SHORT).show();
            btn_check.setEnabled(false);
            btn_sure.setEnabled(true);
            tm = new Timer();
            tt = new TimerTask() {
                @Override
                public void run() {
                    hd.sendEmptyMessage(TIME--);
                }
            };
            tm.schedule(tt,0,1000);
        }
    });
    builder.setNegativeButton("取消", new DialogInterface.OnClickListener() { //设置取消按钮
        @Override
        public void onClick(DialogInterface dialog, int which) {
            dialog.dismiss();
            Toast.makeText(RegisterActivity.this, "已取消" + which, Toast.LENGTH_SHORT).show();
        }
    });
    //参数都设置完成了,创建并显示出来
    builder.create().show();
}
**iiii)销毁短信注册**
protected void onDestroy() {
    super.onDestroy();
    // 注销回调接口registerEventHandler必须和unregisterEventHandler配套使用,否则可能造成内存泄漏。
    SMSSDK.unregisterEventHandler(eh);

}
---
#### 下面给出完整前后端代码:
前端:
<?xml version="1.0" encoding="utf-8"?>

<LinearLayout
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:orientation="horizontal">
    <TextView
        android:layout_width="70dp"
        android:layout_height="wrap_content"
        android:text="用户名:"
        android:textSize="20dp"
        android:layout_weight="0"/>

    <EditText
        android:inputType="phone"
        android:id="@+id/reg_et_userName"
        android:layout_weight="1"
        android:layout_width="0dp"
        android:layout_height="wrap_content"
        />

</LinearLayout>

<LinearLayout
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:orientation="horizontal">
    <TextView
        android:layout_width="70dp"
        android:layout_height="wrap_content"
        android:text="手机号:"
        android:textSize="20dp"
        android:layout_weight="0"/>

    <EditText
        android:inputType="phone"
        android:id="@+id/reg_et_phonenum"
        android:layout_weight="1"
        android:layout_width="0dp"
        android:layout_height="wrap_content"
        />

</LinearLayout>

<LinearLayout
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:orientation="horizontal">
    <TextView
        android:layout_width="70dp"
        android:layout_height="wrap_content"
        android:text="密   码:"
        android:textSize="20dp"
        android:layout_weight="0"/>

    <EditText
        android:inputType="phone"
        android:id="@+id/reg_et_key"
        android:layout_weight="1"
        android:layout_width="0dp"
        android:layout_height="wrap_content"
        />

</LinearLayout>
<LinearLayout
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:orientation="horizontal">

    <EditText
        android:id="@+id/reg_et_checkecode"
        android:layout_weight="1"
        android:layout_width="0dp"
        android:layout_height="wrap_content"
        android:hint="验证码" />

    <Button
        android:background="@color/colorPrimary"
        android:id="@+id/reg_btn_check"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="获取验证码" />


</LinearLayout>
<Button
    android:background="@color/colorAccent"
    android:id="@+id/reg_btn_register"
    android:layout_marginTop="20dp"
    android:textColor="#131313"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:text="注册" />
上一篇:学习javaWeb之Servlet——Filter


下一篇:MySQL之选取某一列插入到新的表中