手机验证,发送验证码

这是一个发送短信验证吗的方法

public String getvfCode(String tel,String userCode){
		String url = "http://172.11.111.111:8090/Api/GetVerificationCode?userCode="+userCode;
		String jsons = HttpUtil.getHttpResponse(url);
		JSONObject jsonObject = new JSONObject(jsons);
		String vfCode = jsonObject.getString("msg");
		Date date = new Date();
		SimpleDateFormat sf = new SimpleDateFormat("yyyy-MM-dd");
		String format = sf.format(date);
		String msg = "您的验证码是"+vfCode+",转发给他人可能导致账号被盗,请勿泄漏,谨防被骗,有效时间一分钟。";
		msg = URLDecoder.decode(msg);
		//发送验证码
		String vfCodeurl = "http://172.11.111.111:8090/Api/sndMsg?phone="+tel+"&msg="+msg+"&sndTime="+format;
		HttpUtil.getHttpResponse(vfCodeurl);
		return tel;
	}

url为短信验证的接口,根据自己的接口写。最后只需要调用就行了

你可能感兴趣的:(手机验证,发送验证码)