JAVA实现利用第三方平台发送短信验证码
前段时间自己做的一个小项目中,涉及到用短信验证码登录、注册的问题,之前没涉及过这一块,看了别人的博客其实也是似懂非懂的,现在就将自己做的利用第三方短信平台来发送验证码这个功能记下来。
本文以注册为例,在springmvc+spring+mybatis框架的基础上完成该短信验证码功能。
发送短信验证码的原理是:随机生成一个6位数字,将该6位数字保存到session当中,客户端通过sessionid判断对应的session,用户输入的验证码再与session记录的验证码进行比较。
为了防止有广告嫌疑这里就不说短信平台是哪个了。
一般的第三方短信平台都会有他们自己的短信接口,只要读懂他们的接口稍作稍作改变就能满足自己的需求。
首先将短信平台接口代码列出:这里要下载三个jar包,,
import java.io.unsupportedencodingexception; import org.apache.commons.httpclient.header; import org.apache.commons.httpclient.httpclient; import org.apache.commons.httpclient.namevaluepair; import org.apache.commons.httpclient.methods.postmethod; public class sendmsg_webchinese { public static void main(string[] args)throws exception { httpclient client = new httpclient(); postmethod post = new postmethod("http://gbk.sms.webchinese.cn"); //该第三方短信服务地址 post.addrequestheader("content-type","application/x-www-form-urlencoded;charset=gbk");//在头文件中设置转码 namevaluepair[] data ={ new namevaluepair("uid", "本站用户名"),new namevaluepair("key", "接口安全秘钥"),new namevaluepair("smsmob","手机号码"),new namevaluepair("smstext","验证码:8888")}; post.setrequestbody(data); client.executemethod(post); header[] headers = post.getresponseheaders(); int statuscode = post.getstatuscode(); system.out.println("statuscode:"+statuscode); for(header h : headers) { system.out.println(h.tostring()); } string result = new string(post.getresponsebodyasstring().getbytes("gbk")); system.out.println(result); //打印返回消息状态 post.releaseconnection(); } }
不难看出,我们想要发送的信息是在这行代码里面:namevaluepair[] data ={ new namevaluepair("uid", "本站用户名"),new namevaluepair("key", "接口安全秘钥"),new namevaluepair("smsmob","手机号码"),new namevaluepair("smstext","验证码:8888")};
该接口中还有一个result信息,它的作用是告诉用户短信发送的状态,1表示发送成功,其他的小于0的为失败,这里只要知道1是成功即可。
我们实际的操作中,验证码肯定是要我们自己生成的。将result信息与验证码一起得到,于是很容易想到用一个hashmap集合。下面是以项目自己的需求对接口的更改:
import java.util.hashmap; import org.apache.commons.httpclient.header; import org.apache.commons.httpclient.httpclient; import org.apache.commons.httpclient.namevaluepair; import org.apache.commons.httpclient.methods.postmethod; import com.yuetile.utils.verifyingcodegenerator; public class sendmsg_webchinesecontroller { public static hashmap<string,string> getmessagestatus(string phone)throws exception{ hashmap<string,string> m=new hashmap<string,string>(); httpclient client = new httpclient(); postmethod post = new postmethod("http://gbk.sms.webchinese.cn"); post.addrequestheader("content-type","application/x-www-form-urlencoded;charset=gbk");//在头文件中设置转码 string code=verifyingcodegenerator.generate();//验证码 namevaluepair[] data ={ new namevaluepair("uid", "****"),new namevaluepair("key", "******"),new namevaluepair("smsmob",phone),new namevaluepair("smstext","您正在注册本站会员,本次验证码为:"+code+""+"有效时间为5分钟")}; m.put("code", code); post.setrequestbody(data); client.executemethod(post); header[] headers = post.getresponseheaders(); int statuscode = post.getstatuscode(); system.out.println("statuscode:"+statuscode); for(header h : headers) { system.out.println(h.tostring()); } string result = new string(post.getresponsebodyasstring().getbytes("gbk")); system.out.println(result); //打印返回消息状态 m.put("result", result); post.releaseconnection(); return m; } }
***表示的是在第三方平台注册的账号密码。
action层:
/** * @author hang * @decription 注册,发送短信验证码,保存到session中 * @param 封装客户端请求 post * @return 返回状态参数 * @throws exception */ @responsebody @requestmapping(value = urldefine.register.checkmessagework, method = requestmethod.post) public object sendcheckmessage(httpservletrequest request, @requestbody userbean u) throws exception { string message = "发送成功"; string phone=u.gettelephone(); //获取到客户端发来的手机号 userbean user = userservice.getbyphone(phone); if (user != null) { message = "该手机号已被注册"; return new response(status.error, message); } else { hashmap<string, string> m = sendmsg_webchinesecontroller.getmessagestatus(phone); //应用发送短信接口 string result = m.get("result"); //获取到result值 if (result.trim().equals("1")) { //如果为1,表示成功发送 string code = m.get("code"); //获取发送的验证码内容 logger.info("发送的验证码:"+code); //打印日志 httpsession session = request.getsession(); //设置session session.setattribute("code", code); //将短信验证码放到session中保存 session.setmaxinactiveinterval(60 * 5);//保存时间 暂时设定为5分钟 return new response(status.success, message); } else { message = "短信发送失败"; return new response(status.error, message); } } }
这样就能发送成功了。
测试:
利用postman在本地进行测试:
结果:
到此发送成功。
以上就是本文的全部内容,希望本文的内容对大家的学习或者工作能带来一定的帮助,同时也希望多多支持!