1、构造手机验证码:使用random对象生成要求的随机数作为验证码,例如4位验证码:1000~9999之间随机数;
2、使用接口向短信平台发送手机号和验证码数据,然后短信平台再把验证码发送到制定手机号上,接口参数一般包括:目标手机号,随机验证码(或包含失效时间),平台接口地址,平台口令;
3、保存接口返回的信息(一般为json文本数据,然后需转换为json对象格式);
4、将手机号--验证码、操作时间存入Session中,作为后面验证使用;
5、接收用户填写的验证码及其他数据;
6、对比提交的验证码与Session中的验证码是否一致,同时判断提交动作是否在有效期内;
7、验证码正确且在有效期内,请求通过,处理相应的业务。
一,首先添加一个jar包,工具类会用到。
1 <!--秒滴云的jar包--> 2 <dependency> 3 <groupId>commons-codec</groupId> 4 <artifactId>commons-codec</artifactId> 5 <version>1.11</version> 6 </dependency>
二、我这里只是编写一个简单的短信验证功能,要是用其他的语音验证。。。。等等需要去秒滴云官方下载文档,下面是编写的一个config文档,专门存放一些参数
二、编写http请求工具类
1 public class HttpUtil 2 { 3 /** 4 * 构造通用参数timestamp、sig和respDataType 5 * 6 * @return 7 */ 8 public static String createCommonParam() 9 { 10 // 时间戳 11 SimpleDateFormat sdf = new SimpleDateFormat("yyyyMMddHHmmss"); 12 String timestamp = sdf.format(new Date()); 13 14 // 签名 15 String sig = DigestUtils.md5Hex(Config.ACCOUNT_SID + Config.AUTH_TOKEN + timestamp); 16 17 return "×tamp=" + timestamp + "&sig=" + sig + "&respDataType=" + Config.RESP_DATA_TYPE; 18 } 19 20 /** 21 * post请求 22 * 23 * @param url 24 * 功能和操作 25 * @param body 26 * 要post的数据 27 * @return 28 * @throws IOException 29 */ 30 public static String post(String url, String body) 31 { 32 System.out.println("url:" + System.lineSeparator() + url); 33 System.out.println("body:" + System.lineSeparator() + body); 34 35 String result = ""; 36 try 37 { 38 OutputStreamWriter out = null; 39 BufferedReader in = null; 40 URL realUrl = new URL(url); 41 URLConnection conn = realUrl.openConnection(); 42 43 // 设置连接参数 44 conn.setDoOutput(true); 45 conn.setDoInput(true); 46 conn.setConnectTimeout(5000); 47 conn.setReadTimeout(20000); 48 conn.setRequestProperty("Content-Type", "application/x-www-form-urlencoded"); 49 // 提交数据 50 out = new OutputStreamWriter(conn.getOutputStream(), "UTF-8"); 51 out.write(body); 52 out.flush(); 53 54 // 读取返回数据 55 in = new BufferedReader(new InputStreamReader(conn.getInputStream(), "UTF-8")); 56 String line = ""; 57 boolean firstLine = true; // 读第一行不加换行符 58 while ((line = in.readLine()) != null) 59 { 60 if (firstLine) 61 { 62 firstLine = false; 63 } else 64 { 65 result += System.lineSeparator(); 66 } 67 result += line; 68 } 69 } catch (Exception e) 70 { 71 e.printStackTrace(); 72 } 73 return result; 74 } 75 76 /** 77 * 回调测试工具方法 78 * 79 * @param url 80 * @param reqStr 81 * @return 82 */ 83 public static String postHuiDiao(String url, String body) 84 { 85 String result = ""; 86 try 87 { 88 OutputStreamWriter out = null; 89 BufferedReader in = null; 90 URL realUrl = new URL(url); 91 URLConnection conn = realUrl.openConnection(); 92 93 // 设置连接参数 94 conn.setDoOutput(true); 95 conn.setDoInput(true); 96 conn.setConnectTimeout(5000); 97 conn.setReadTimeout(20000); 98 99 // 提交数据 100 out = new OutputStreamWriter(conn.getOutputStream(), "UTF-8"); 101 out.write(body); 102 out.flush(); 103 104 // 读取返回数据 105 in = new BufferedReader(new InputStreamReader(conn.getInputStream(), "UTF-8")); 106 String line = ""; 107 boolean firstLine = true; // 读第一行不加换行符 108 while ((line = in.readLine()) != null) 109 { 110 if (firstLine) 111 { 112 firstLine = false; 113 } else 114 { 115 result += System.lineSeparator(); 116 } 117 result += line; 118 } 119 } catch (Exception e) 120 { 121 e.printStackTrace(); 122 } 123 return result; 124 } 125 }
三、生成四位数的方法
1 public static String runNumber() { 2 String str="ABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789"; 3 StringBuilder sb=new StringBuilder(4); 4 for(int i=0;i<4;i++) 5 { 6 char ch=str.charAt(new Random().nextInt(str.length())); 7 sb.append(ch); 8 } 9 System.out.println(sb.toString()); 10 String code = sb.toString(); 11 return code; 12 }
4、执行方法execute(),便会发送成功
1 public class IndustrySMS 2 { 3 private static String operation = "/industrySMS/sendSMS"; 4 5 private static String accountSid = Config.ACCOUNT_SID; 6 private static String to = "15342349382"; 7 private static String smsContent = "【小陶科技】登录验证码:{"+runNumber().toString()+"},如非本人操作,请忽略此短信。"; 8 9 /** 10 * 验证码通知短信 11 */ 12 public static void execute() 13 { 14 String tmpSmsContent = null; 15 try{ 16 tmpSmsContent = URLEncoder.encode(smsContent, "UTF-8"); 17 }catch(Exception e){ 18 19 } 20 String url = Config.BASE_URL + operation; 21 String body = "accountSid=" + accountSid + "&to=" + to + "&smsContent=" + tmpSmsContent 22 + HttpUtil.createCommonParam(); 23 24 // 提交请求 25 String result = HttpUtil.post(url, body); 26 System.out.println("result:" + System.lineSeparator() + result); 27 }
参考:
blog.csdn.net/classabcd/article/details/82464582