springboot 项目如何存放微信的验证文件
作者:互联网
我们做微信开发的时候,有时候会有如下要求
用户在网页授权页同意授权给公众号后,微信会将授权数据传给一个回调页面,回调页面需在此域名下,以确保安全可靠。
可以通过写代码实现
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;
@RestController
public class IndexController {
@RequestMapping("MP_verify_swwwwwere.txt")
public String wxCheck(){
//直接返回你下载的授权文件里的内容就好
return "xxxxxxxxxxsxx";
}
}
标签:RestController,springboot,微信,public,存放,授权,org,import,annotation 来源: https://blog.csdn.net/sskk1118/article/details/117927543