JAVA实现手机短信验证码

手机短信验证码接口来自于网易云手机短信接口

package com.netease.code;

import java.util.ArrayList;
import java.util.Date;
import java.util.List;

import org.apache.http.HttpResponse;
import org.apache.http.NameValuePair;
import org.apache.http.client.HttpClient;
import org.apache.http.client.entity.UrlEncodedFormEntity;
import org.apache.http.client.methods.HttpPost;
import org.apache.http.impl.client.HttpClientBuilder;
import org.apache.http.message.BasicNameValuePair;
import org.apache.http.util.EntityUtils;

import com.netease.checksum.CheckSumBuilder;
/**
 * 发送手机短信验证码
 * @author liuxuanlin
 *
 */
public class SendCode {
    //发送验证码的请求路径URL
    private static final String
            SERVER_URL="https://api.netease.im/sms/sendcode.action";
    //网易云信分配的账号,请替换你在管理后台应用下申请的Appkey
    private static final String
            APP_KEY="c6c0e0d8f76303acc8920865f5e6d42d";
    //网易云信分配的密钥,请替换你在管理后台应用下申请的appSecret
    private static final String APP_SECRET="95df0955413b";
    //随机数
    private static final String NONCE="123456";
    //短信模板ID
    private static final String TEMPLATEID="9504256";
    //手机号
    private static final String MOBILE="18902865427";
    //验证码长度,范围4~10,默认为4
    private static final String CODELEN="6";

    public static void main(String[] args) throws Exception {

    	HttpClient httpClient = HttpClientBuilder.create().build();
    	System.out.println("1111:"+httpClient);
        HttpPost httpPost = new HttpPost(SERVER_URL);
        System.out.println("2222:"+httpPost);
        String curTime = String.valueOf((new Date()).getTime() / 1000L);
        System.out.println("3333:"+curTime);
        /*
         * 参考计算CheckSum的java代码,在上述文档的参数列表中,有CheckSum的计算文档示例
         */
        String checkSum = CheckSumBuilder.getCheckSum(APP_SECRET, NONCE, curTime);
        System.out.println("4444:"+checkSum);
        // 设置请求的header
        httpPost.addHeader("AppKey", APP_KEY);
        httpPost.addHeader("Nonce", NONCE);
        httpPost.addHeader("CurTime", curTime);
        httpPost.addHeader("CheckSum", checkSum);
        httpPost.addHeader("Content-Type", "application/x-www-form-urlencoded;charset=utf-8");

        // 设置请求的的参数,requestBody参数
        List<NameValuePair> nvps = new ArrayList<NameValuePair>();
        /*
         * 1.如果是模板短信,请注意参数mobile是有s的,详细参数配置请参考“发送模板短信文档”
         * 2.参数格式是jsonArray的格式,例如 "['13888888888','13666666666']"
         * 3.params是根据你模板里面有几个参数,那里面的参数也是jsonArray格式
         */
        nvps.add(new BasicNameValuePair("templateid", TEMPLATEID));
        nvps.add(new BasicNameValuePair("mobile", MOBILE));
        nvps.add(new BasicNameValuePair("codeLen", CODELEN));
        System.out.println("5555:"+nvps);
        httpPost.setEntity(new UrlEncodedFormEntity(nvps, "utf-8"));

        // 执行请求
        HttpResponse response = httpClient.execute(httpPost);
        
        /*
         * 1.打印执行结果,打印结果一般会200、315、403、404、413、414、500
         * 2.具体的code有问题的可以参考官网的Code状态表
         */
        System.out.println(EntityUtils.toString(response.getEntity(), "utf-8"));
        
    }
}
package com.netease.checksum;

import java.security.MessageDigest;

public class CheckSumBuilder {
   // 计算并获取CheckSum
   public static String getCheckSum(String appSecret, String nonce, String curTime) {
       return encode("sha1", appSecret + nonce + curTime);
   }
   
   // 计算并获取md5值
   public static String getMD5(String requestBody) {
       return encode("md5", requestBody);
   }

   private static String encode(String algorithm, String value) {
       if (value == null) {
           return null;
       }
       try {
           MessageDigest messageDigest
                   = MessageDigest.getInstance(algorithm);
           messageDigest.update(value.getBytes());
           return getFormattedText(messageDigest.digest());
       } catch (Exception e) {
           throw new RuntimeException(e);
       }
   }
   private static String getFormattedText(byte[] bytes) {
       int len = bytes.length;
       StringBuilder buf = new StringBuilder(len * 2);
       for (int j = 0; j < len; j++) {
           buf.append(HEX_DIGITS[(bytes[j] >> 4) & 0x0f]);
           buf.append(HEX_DIGITS[bytes[j] & 0x0f]);
       }
       System.out.println("77:"+buf.toString());
       return buf.toString();
   }
   private static final char[] HEX_DIGITS = { '0', '1', '2', '3', '4', '5',
           '6', '7', '8', '9', 'a', 'b', 'c', 'd', 'e', 'f' };
}

以下代码为截取main方法中输入的字符串(只获取到有效的短信验证码)

String line=EntityUtils.toString(response.getEntity(), "utf-8");
	        Integer dex=line.lastIndexOf(':');
	        String str=line.substring(dex+2,dex+8 );
	        //System.out.println("8888:"+str);
			return (str);

猜你喜欢

转载自blog.csdn.net/qq_42732927/article/details/84892126