一、申请测试公众号
点此链接:
注册微信测试公众号
用自己的微信扫一扫就可以申请,各个接口权限也都是开着的。
二、在spring工程下写好一个controller
要保证能在你的电脑上成功启动。
package com.aim.jsr.controller;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.RequestParam;
import org.springframework.web.bind.annotation.RestController;
import java.security.MessageDigest;
import java.security.NoSuchAlgorithmException;
import java.util.Arrays;
/**
* Created by Amy on 2018/1/26.
*/
@RestController
public class WechatController {
private String TOKEN = "good";
/**
* @param signature 微信加密签名,结合了开发者填写的token参数和请求中的timestamp参数、nonce参数
* @param timestamp 时间戳
* @param nonce 随机数
* @param echostr 随机字符串
* @return
*/
@GetMapping("/wxdemo")
public String test(@RequestParam("signature") String signature,
@RequestParam("timestamp") String timestamp,
@RequestParam("nonce") String nonce,
@RequestParam("echostr") String echostr) {
//将token、timestamp、nonce三个参数进行字典序排序
String sortString = sort(TOKEN, timestamp, nonce);
//将三个参数字符串拼接成一个字符串进行sha1加密
String myString = sha1(sortString);
//开发者获得加密后的字符串可与signature对比,标识该请求