博主首页

服务端生成小程序二维码、扫码可直接进小程序

      分为两步、要生成小程序的二维码,都是调用小程序自己的api

      1、先获取token

      2、然后再生成二维码

    官方文档https://developers.weixin.qq.com/miniprogram/dev/api-backend/open-api/qr-code/wxacode.getUnlimited.html

复制代码
             HttpGet httpGet = new HttpGet(
                        "https://api.weixin.qq.com/cgi-bin/token?grant_type=client_credential&appid="
                                + appid + "&secret=" + secret );
                HttpClient httpClient = HttpClients.createDefault();
                HttpResponse res = httpClient.execute(httpGet);
                HttpEntity entity = res.getEntity();
                String result = EntityUtils.toString(entity, "UTF-8");
                JSONObject jsons = JSONObject.fromObject(result);
                String expires_in = jsons.getString("expires_in");
                
                //缓存
                if(Integer.parseInt(expires_in)==7200){
                    //ok
                    String access_token = jsons.getString("access_token");
                    System.out.println("access_token:"+access_token);
}
复制代码
复制代码
                URL url = new URL("https://api.weixin.qq.com/wxa/getwxacodeunlimit?access_token="+access_token);
                    HttpURLConnection httpURLConnection = (HttpURLConnection) url.openConnection();
                    httpURLConnection.setRequestMethod("POST");// 提交模式
                    // 发送POST请求必须设置如下两行
                    httpURLConnection.setDoOutput(true);
                    httpURLConnection.setDoInput(true);
                    // 获取URLConnection对象对应的输出流
                    PrintWriter printWriter = new PrintWriter(httpURLConnection.getOutputStream());
                 // 发送请求参数
                    JSONObject paramJson = new JSONObject();
                    paramJson.put("scene", "a=1234567890");
                    paramJson.put("page", page);
                    paramJson.put("width", 430);
                    paramJson.put("auto_color", true);
                    printWriter.write(paramJson.toString());
                    // flush输出流的缓冲
                    printWriter.flush();
                    //开始获取数据
                     bis = new BufferedInputStream(httpURLConnection.getInputStream());
                     bos = new ByteArrayOutputStream();
                    bos.write(bis);
                     byte[]  bs = bos.toByteArray();
                     printWriter.close();
  bos.close();
bis.close();
复制代码

 

posted @   笑~笑  阅读(2540)  评论(0编辑  收藏  举报
编辑推荐:
· 智能桌面机器人:用.NET IoT库控制舵机并多方法播放表情
· Linux glibc自带哈希表的用例及性能测试
· 深入理解 Mybatis 分库分表执行原理
· 如何打造一个高并发系统?
· .NET Core GC压缩(compact_phase)底层原理浅谈
阅读排行:
· 手把手教你在本地部署DeepSeek R1,搭建web-ui ,建议收藏!
· 新年开篇:在本地部署DeepSeek大模型实现联网增强的AI应用
· Janus Pro:DeepSeek 开源革新,多模态 AI 的未来
· 互联网不景气了那就玩玩嵌入式吧,用纯.NET开发并制作一个智能桌面机器人(三):用.NET IoT库
· 【非技术】说说2024年我都干了些啥
点击右上角即可分享
微信分享提示