Part1业务流程
1.手机验证码配置:使用random对象生成所需的随机数作为验证码(例如,4位数验证码:1000~9999之间的随机数)。
2.使用接口向SMS平台发送手机号码和验证码数据,然后在SMS平台将验证码发送到开发手机号码。接口参数通常包括大象手机号码、随机验证码(或过期时间)、平台接口地址、平台密码。
3.存储接口返回的信息(通常是JSON文本数据,必须转换为JSON对象格式)。
4.手机号码-验证码、操作时间放在会话内,用作后置验证。
接收用户编写的验证码和其他数据。
6.比较提交的验证码和Session的验证码是否匹配,并判断提交作业是否在有效期内。
7.验证码正确,在有效期内请求通过,处理相关业务。
Part2首先添加一个jar包
工具类会用到
<!--秒滴云的jar包-->
<dependency>
<groupId>commons-codec</groupId>
<artifactId>commons-codec</artifactId>
<version>1.11</version>
</dependency>
Part3编写简单的短信验证功能
我这里只是编写一个简单的短信验证功能,要是用其他的语音验证。。。。等等需要去秒滴云官方下载文档,下面是编写的一个config文档,专门存放一些参数
Part4编写http请求工具类
public class HttpUtil
{
/**
* 构造通用参数timestamp、sig和respDataType
*
* @return
*/
public static String createCommonParam
{
// 时间戳
SimpleDateFormat sdf = new SimpleDateFormat("yyyyMMddHHmmss");
String timestamp = (new Date);
// 签名
String sig = Dige + Con + timestamp);
return "×tamp=" + timestamp + "&sig=" + sig + "&respDataType=" + Con;
}
/**
* post请求
*
* @param url
* 功能和操作
* @param body
* 要post的数据
* @return
* @throws IOException
*/
public static String post(String url, String body)
{
Sy("url:" + Sy + url);
Sy("body:" + Sy + body);
String result = "";
try
{
OutputStreamWriter out = ;
BufferedReader in = ;
URL realUrl = new URL(url);
URLConnection conn = realUrl.openConnection;
// 设置连接参数
conn.setDoOutput(true);
conn.setDoInput(true);
conn.setConnectTimeout(5000);
conn.setReadTimeout(20000);
conn.setRequestProperty("Content-Type", "application/x-www-form-urlencoded");
// 提交数据
out = new OutputStreamWriter, "UTF-8");
out.write(body);
out.flush;
// 读取返回数据
in = new BufferedReader(new InputStreamReader, "UTF-8"));
String line = "";
boolean firstLine = true; // 读第一行不加换行符
while ((line = in.readLine) != )
{
if (firstLine)
{
firstLine = false;
} else
{
result += Sy;
}
result += line;
}
} catch (Exception e)
{
e.printStackTrace;
}
return result;
}
/**
* 回调测试工具方法
*
* @param url
* @param reqStr
* @return
*/
public static String postHuiDiao(String url, String body)
{
String result = "";
try
{
OutputStreamWriter out = ;
BufferedReader in = ;
URL realUrl = new URL(url);
URLConnection conn = realUrl.openConnection;
// 设置连接参数
conn.setDoOutput(true);
conn.setDoInput(true);
conn.setConnectTimeout(5000);
conn.setReadTimeout(20000);
// 提交数据
out = new OutputStreamWriter, "UTF-8");
out.write(body);
out.flush;
// 读取返回数据
in = new BufferedReader(new InputStreamReader, "UTF-8"));
String line = "";
boolean firstLine = true; // 读第一行不加换行符
while ((line = in.readLine) != )
{
if (firstLine)
{
firstLine = false;
} else
{
result += Sy;
}
result += line;
}
} catch (Exception e)
{
e.printStackTrace;
}
return result;
}
}
Part5生成四位数的方法
public static String runNumber {
String str="ABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789";
StringBuilder sb=new StringBuilder(4);
for(int i=0;i<4;i++)
{
char ch=(new Random.nextIn));
(ch);
}
Sy);
String code = ;
return code;
}
4、执行方法execute,便会发送成功
public class IndustrySMS
{
private static String operation = "/industrySMS/sendSMS";
private static String accountSid = Con;
private static String to = "";
private static String smsContent = "【小陶科技】登录验证码:{"+runNumber.toString+"},如非本人操作,请忽略此短信。";
/**
* 验证码通知短信
*/
public static void execute
{
String tmpSmsContent = ;
try{
tmpSmsContent = URLEncoder.encode(smsContent, "UTF-8");
}catch(Exception e){
}
String url = Con + operation;
String body = "accountSid=" + accountSid + "&to=" + to + "&smsContent=" + tmpSmsContent
+ H;
// 提交请求
String result = H(url, body);
Sy("result:" + Sy + result);
}
以上就是短信验证码登录流程详细步骤
作者 | classabcd
来源 | blog.c