服务器之家:专注于服务器技术及软件下载分享
分类导航

PHP教程|ASP.NET教程|Java教程|ASP教程|编程技术|正则表达式|C/C++|IOS|C#|Swift|Android|JavaScript|易语言|

服务器之家 - 编程语言 - Java教程 - springboot短信验证码登录功能的实现

springboot短信验证码登录功能的实现

2021-08-04 09:39极客521 Java教程

这篇文章主要介绍了springboot短信验证码登录功能的实现,本文给大家介绍的非常详细,对大家的学习或工作具有一定的参考借鉴价值,需要的朋友可以参考下

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 文档,专门存放一些参数

 

springboot短信验证码登录功能的实现

三、编写 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. }

执行方法 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. String url = Config.BASE_URL + operation;
  20. String body = "accountSid=" + accountSid + "&to=" + to + "&smsContent=" + tmpSmsContent
  21. + HttpUtil.createCommonParam();
  22.  
  23. // 提交请求
  24. String result = HttpUtil.post(url, body);
  25. System.out.println("result:" + System.lineSeparator() + result);
  26. }

到此这篇关于springboot短信验证码登录功能的实现的文章就介绍到这了,更多相关springboot短信验证码登录内容请搜索服务器之家以前的文章或继续浏览下面的相关文章希望大家以后多多支持服务器之家!

延伸 · 阅读

精彩推荐