当前位置:   article > 正文

java创建微信小程序二维码_java 微信sdk登录二维码有效期设置

java 微信sdk登录二维码有效期设置

创建微信小程序二维码有两个接口需要
一个是获取tocken的接口
一个是生成二维码的接口

获取tocken接口


//**********填写你的小程序appid 和 secret
public static String getAccessToken() throws IOException {
   
		//获取tokcen接口
        String url = "https://api.weixin.qq.com/cgi-bin/token?grant_type=client_credential&appid=*********&secret=*********";
        url.trim();
        //创建http请求
        CloseableHttpClient aDefault = HttpClients.createDefault();
        HttpGet httpGet=new HttpGet(url);
        CloseableHttpResponse execute = aDefault.execute(httpGet);
        String toString = EntityUtils.toString(execute.getEntity());
        System.out.println(toString);
        Map map = JSONObject.parseObject(toString, Map.class);
        System.out
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/weixin_40725706/article/detail/467290
推荐阅读
相关标签
  

闽ICP备14008679号