微信接口开发

This commit is contained in:
huangdeliang 2021-05-13 17:48:31 +08:00
parent fa8d0a5f19
commit 1426d2ab51

View File

@ -523,8 +523,10 @@ public class WechatAppletController extends BaseController {
} }
@GetMapping("/authServer") @GetMapping("/authServer")
public Boolean authServer(@RequestParam String signature, @RequestParam String timestamp, @RequestParam String nonce, @RequestParam String echostr) { public String authServer(@RequestParam String signature, @RequestParam String timestamp, @RequestParam String nonce, @RequestParam String echostr) {
return true; // String token = "shengtang";
// String encodingAESKey = "DsZDa8UQs2B0BUF31RNBexGrCEXMwa4z2uONuJmVKFW";
return echostr;
} }