GVKun编程网logo

微信小程序二维码如何生成?(微信小程序二维码如何生成)

23

关于微信小程序二维码如何生成?和微信小程序二维码如何生成的问题就给大家分享到这里,感谢你花时间阅读本站内容,更多关于java后端生成微信小程序二维码保存本地,将图片路径返回给前端、java生成小程序二

关于微信小程序二维码如何生成?微信小程序二维码如何生成的问题就给大家分享到这里,感谢你花时间阅读本站内容,更多关于java后端生成微信小程序二维码保存本地,将图片路径返回给前端、java生成小程序二维码、Java生成微信小程序二维码、Java生成微信小程序二维码的方式有哪些?等相关知识的信息别忘了在本站进行查找喔。

本文目录一览:

微信小程序二维码如何生成?(微信小程序二维码如何生成)

微信小程序二维码如何生成?(微信小程序二维码如何生成)

OSC 请你来轰趴啦!1028 苏州源创会,一起寻宝 AI 时代

微信小程序二维码能够方便小程序的推广,那么微信小程序的二维码如何生成?微信小程序二维码都有哪些?

正式二维码

在 “设置” 中查看小程序的正式二维码,该二维码只用于访问小程序的线上正式版本。

 

带参数二维码

通过接口获得带参数二维码。最多可生成带参数二维码 10000 个,请谨慎调用。

 

获取小程序页面二维码

通过后台接口可以获取小程序任意页面的二维码,扫描该二维码可以直接进入小程序对应的页面

 

获取小程序码

接口地址:https://api.weixin.qq.com/wxa/getwxacode?access_token=ACCESS_TOKEN

POST 参数说明

参数

类型

默认值

说明

path

String

 

不能为空,最大长度 128 字节

width

Int

430

二维码的宽度

auth_color

Bool

false

自动配置线条颜色,如果颜色依然是黑色,则说明不建议配置主色调

line_color

Object

{"r":"0","g":"0","b":"0"}

auth_color 为 false 时生效,使用 rgb 设置颜色 例如 {"r":"xxx","g":"xxx","b":"xxx"}

 

获取普通二维码

接口地址:https://api.weixin.qq.com/cgi-bin/wxaapp/createwxaqrcode?access_token=ACCESS_TOKEN

获取 access_token 详见文档

 

POST 参数说明

参数

类型

默认值

说明

path

String

 

不能为空,最大长度 128 字节

width

Int

430

二维码的宽度

示例:

{"path": "pages/index?query=1", "width": 430}

注:pages/index 需要在 app.json 的 pages 中定义

 

Bug & Tip

tip:通过该接口,仅能生成已发布的小程序的二维码。

tip:可以在开发者工具预览时生成开发版的带参二维码。

tip:带参二维码只有 100,000 个,请谨慎调用。

tip: POST 参数需要转成 json 字符串,不支持 form 表单提交。

tip: auth_color line_color 参数仅对小程序码生效

java后端生成微信小程序二维码保存本地,将图片路径返回给前端

java后端生成微信小程序二维码保存本地,将图片路径返回给前端

获取小程序码

官方地址

https://developers.weixin.qq.com/miniprogram/dev/framework/open-ability/qr-code.html

 

为满足不同需求和场景,这里提供了两个接口,开发者可挑选适合自己的接口。

 

  • 接口 A: 适用于需要的码数量较少的业务场景
    • 生成小程序码,可接受 path 参数较长,生成个数受限,数量限制见 注意事项,请谨慎使用。
  • 接口 B:适用于需要的码数量极多的业务场景
    • 生成小程序码,可接受页面参数较短,生成个数不受限

 

接口B为例:

请求地址

POST https://api.weixin.qq.com/wxa/getwxacodeunlimit?access_token=ACCESS_TOKEN
可以看到请求地址需要
access_token,所以我们需要先获取 access_token
官方地址 https://developers.weixin.qq.com/doc/offiaccount/WeChat_Invoice/Nontax_Bill/API_list.html#1.1%20%E8%8E%B7%E5%8F%96access_token

请求地址

请求URL:https://api.weixin.qq.com/cgi-bin/token?grant_type=client_credential&appid=APPID&secret=APPSECRET
请求方法:GET
先上获取access_token 与 获取二维码的代码:
package com.yami.shop.api.Util;

import com.alibaba.fastjson.JSON;
import com.alibaba.fastjson.JSONObject;
import lombok.extern.slf4j.Slf4j;
import org.springframework.stereotype.Component;

import javax.servlet.http.HttpServletRequest;
import java.io.*;
import java.net.HttpURLConnection;
import java.net.URL;
import java.text.SimpleDateFormat;
import java.util.Date;
@Component
@Slf4j
public class WxQrCode {

    //获取AccessToken路径
    private static final String AccessToken_URL
            = "https://api.weixin.qq.com/cgi-bin/token?grant_type=client_credential&appid=APPID&secret=APPSECRET";//小程序id
    //获取二维码路径
    private static final String WxCode_URL
            = "https://api.weixin.qq.com/wxa/getwxacodeunlimit?access_token=ACCESS_TOKEN";//小程序密钥
    /**
     * 用于获取access_token
     * @return  access_token
     * @throws Exception
     */
    public static String getAccessToken(String appid,String secret) throws Exception {
        String requestUrl = AccessToken_URL.replace("APPID",appid).replace("APPSECRET",secret);
        URL url = new URL(requestUrl);
        // 打开和URL之间的连接
        HttpURLConnection connection = (HttpURLConnection) url.openConnection();
        connection.setRequestMethod("POST");
        // 设置通用的请求属性
        connection.setRequestProperty("Content-Type", "application/json");
        connection.setRequestProperty("Connection", "Keep-Alive");
        connection.setUseCaches(false);
        connection.setDoOutput(true);
        connection.setDoInput(true);

        // 得到请求的输出流对象
        DataOutputStream out = new DataOutputStream(connection.getOutputStream());
        out.writeBytes("");
        out.flush();
        out.close();

        // 建立实际的连接
        connection.connect();
        // 定义 BufferedReader输入流来读取URL的响应
        BufferedReader in = null;
        if (requestUrl.contains("nlp"))
            in = new BufferedReader(new InputStreamReader(connection.getInputStream(), "GBK"));
        else
            in = new BufferedReader(new InputStreamReader(connection.getInputStream(), "UTF-8"));
        String result = "";
        String getLine;
        while ((getLine = in.readLine()) != null) {
            result += getLine;
        }
        in.close();
        JSONObject jsonObject = JSON.parseObject(result);
        String accesstoken=jsonObject.getString("access_token");
        return accesstoken;
    }


    /*
     * 获取 二维码图片
     *
     */
    public static String getminiqrQr(String accessToken,String uploadPath, HttpServletRequest request) {
        String ctxPath = uploadPath;
        String fileName="twoCode.png";
        String bizPath = "files";
        String nowday = new SimpleDateFormat("yyyyMMdd").format(new Date());
        String ppath =ctxPath + File.separator + bizPath + File.separator + nowday;
        File file = new File(ctxPath + File.separator + bizPath + File.separator + nowday);
        if (!file.exists()) {
            file.mkdirs();// 创建文件根目录
        }
        String savePath = file.getPath() + File.separator + fileName;
        String qrCode = bizPath + File.separator + nowday+ File.separator + fileName;
//        if (ppath.contains("\\")) {
//            ppath = ppath.replace("\\", "/");
//        }
        if (qrCode.contains("\\")) {
            qrCode = qrCode.replace("\\", "/");
        }
//        String codeUrl=ppath+"/twoCode.png";
        System.out.print(qrCode);
        System.out.print(savePath);
        try
        {
//            URL url = new URL("https://api.weixin.qq.com/wxa/getwxacode?access_token="+accessToken);
            String wxCodeURL = WxCode_URL.replace("ACCESS_TOKEN",accessToken);
            URL url = new URL(wxCodeURL);
            HttpURLConnection httpURLConnection = (HttpURLConnection) url.openConnection();
            httpURLConnection.setRequestMethod("POST");// 提交模式
            // conn.setConnectTimeout(10000);//连接超时 单位毫秒
            // conn.setReadTimeout(2000);//读取超时 单位毫秒
            // 发送POST请求必须设置如下两行
            httpURLConnection.setDoOutput(true);
            httpURLConnection.setDoInput(true);
            // 获取URLConnection对象对应的输出流
            PrintWriter printWriter = new PrintWriter(httpURLConnection.getOutputStream());
            // 发送请求参数
            JSONObject paramJson = new JSONObject();
            paramJson.put("scene", "1234567890");
//            paramJson.put("page", "pages/index/index"); //小程序暂未发布我没有带page参数
            paramJson.put("width", 430);
            paramJson.put("is_hyaline", true);
            paramJson.put("auto_color", true);
            /**
             * line_color生效
             * paramJson.put("auto_color", false);
             * JSONObject lineColor = new JSONObject();
             * lineColor.put("r", 0);
             * lineColor.put("g", 0);
             * lineColor.put("b", 0);
             * paramJson.put("line_color", lineColor);
             * */

            printWriter.write(paramJson.toString());
            // flush输出流的缓冲
            printWriter.flush();
            //开始获取数据
            BufferedInputStream bis = new BufferedInputStream(httpURLConnection.getInputStream());
            OutputStream os = new FileOutputStream(new File(savePath));
            int len;
            byte[] arr = new byte[1024];
            while ((len = bis.read(arr)) != -1)
            {
                os.write(arr, 0, len);
                os.flush();
            }
            os.close();
        }
        catch (Exception e)
        {
            e.printStackTrace();
        }
        return qrCode;
    }

}

controller层  我是从控制层将参数带过去的

package com.yami.shop.api.owneruser.controller;

import com.alibaba.fastjson.JSONObject;
import com.yami.shop.api.Util.WxQrCode;
import org.springframework.beans.factory.annotation.Value;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;

import javax.servlet.http.HttpServletRequest;
import java.io.IOException;

@RequestMapping("/owner/code")
@RestController
public class WxQrCodeController {

//    @Value("${ma.appid}")
    private String APIKEY="wxab03e9b278534a80";//小程序id
//    @Value("${ma.secret}")
    private String SECRETKEY="b992f830ec418093323d487ddd109e9f";//小程序密钥
    @Value("${file.path.upload}")
    private String uploadPath;

    /**
     * 接收二维码
     * @param request
     * @return
     * @throws IOException
     */
    @GetMapping(value="/code")
    public Object twoCode(HttpServletRequest request) throws IOException {
        JSONObject data=new JSONObject();
        String accessToken = null;
        try{
            accessToken = WxQrCode.getAccessToken(APIKEY,SECRETKEY);
            System.out.println("accessToken;"+accessToken);
            String twoCodeUrl = WxQrCode.getminiqrQr(accessToken,uploadPath,request);
            data.put("twoCodeUrl", twoCodeUrl);
            return data;
        }catch (Exception e){
            e.printStackTrace();
        }
        return null;
    }


}
 

获取二维码请求参数

属性 类型 默认值 必填 说明
access_token string   接口调用凭证
scene string   最大32个可见字符,只支持数字,大小写英文以及部分特殊字符:!#$&''()*+,/:;=?@-._~,其它字符请自行编码为合法字符(因不支持%,中文无法使用 urlencode 处理,请使用其他编码方式)
page string 主页 必须是已经发布的小程序存在的页面(否则报错),例如 pages/index/index, 根路径前不要填加 /,不能携带参数(参数请放在scene字段里),如果不填写这个字段,默认跳主页面
width number 430 二维码的宽度,单位 px,最小 280px,最大 1280px
auto_color boolean false 自动配置线条颜色,如果颜色依然是黑色,则说明不建议配置主色调,默认 false
line_color Object {"r":0,"g":0,"b":0} auto_color 为 false 时生效,使用 rgb 设置颜色 例如 {"r":"xxx","g":"xxx","b":"xxx"} 十进制表示
is_hyaline boolean false 是否需要透明底色,为 true 时,生成透明底色的小程序

返回值

Buffer (返回的图片 Buffer

异常返回

Object

JSON

属性 类型 说明
errcode number 错误码
errmsg string 错误信息

errcode 的合法值

说明 最低版本
45009 调用分钟频率受限(目前5000次/分钟,会调整),如需大量小程序码,建议预生成。  
41030 所传page页面不存在,或者小程序没有发布  

返回值说明

如果调用成功,会直接返回图片二进制内容,如果请求失败,会返回 JSON 格式的数据。

 

 --------------------------------请多多指教

java生成小程序二维码

java生成小程序二维码

java生成小程序二维码

php小编苹果为您介绍如何使用Java生成小程序二维码。小程序二维码是小程序的重要入口,能够方便用户快速访问小程序。Java作为一种流行的编程语言,可以帮助开发者轻松生成小程序二维码。本文将详细介绍使用Java生成小程序二维码的步骤,让您轻松掌握这一技能。

Java生成小程序二维码

引言

小程序二维码是访问小程序的一种便捷方式,可用于宣传推广、用户引导等场景。本文将介绍使用Java生成小程序二维码的详细步骤,包括生成基础二维码和带有自定义样式的二维码。

立即学习“Java免费学习笔记(深入)”;

生成基础二维码

  1. 添加 Maven 依赖:
<dependency>
<groupId>com.Google.zxing</groupId>
<artifactId>core</artifactId>
<version>3.4.1</version>
</dependency>
登录后复制
  1. 导入相关类:
import com.google.zxing.BarcodeFORMat;
import com.google.zxing.MultiFormatWriter;
import com.google.zxing.WriterException;
import com.google.zxing.client.j2se.MatrixToImageWriter;
import com.google.zxing.common.BitMatrix;
登录后复制
  1. 生成二维码:
String content = "小程序二维码内容";
BitMatrix matrix = new MultiFormatWriter().encode(content, BarcodeFormat.QR_CODE, 300, 300);
MatrixToImageWriter.writeToStream(matrix, "PNG", outputStream);
登录后复制

生成带有自定义样式的二维码

自定义二维码样式可增强二维码的视觉吸引力,提高扫描率。

  1. 导入必要类:
import com.google.zxing.qrcode.decoder.ErrorCorrectionLevel;
import com.google.zxing.qrcode.encoder.ByteMatrix;
import com.google.zxing.qrcode.encoder.Encoder;
import com.google.zxing.qrcode.encoder.QRCode;
登录后复制
  1. 创建二维码:
String content = "自定义二维码内容";
QRCode code = Encoder.encode(content, ErrorCorrectionLevel.H, null);
登录后复制
  1. 添加定制样式:
  • 前景色:
ByteMatrix matrix = code.getMatrix();
for (int x = 0; x < matrix.getWidth(); x++) {
for (int y = 0; y < matrix.getHeight(); y++) {
if (matrix.get(x, y)) {
matrix.set(x, y, 0xFF000000); // 黑色
}
}
}
登录后复制
  • 背景色:
for (int x = 0; x < matrix.getWidth(); x++) {
for (int y = 0; y < matrix.getHeight(); y++) {
if (!matrix.get(x, y)) {
matrix.set(x, y, 0xFFFFFFFF); // 白色
}
}
}
登录后复制
  • logo:
// ...省略加载 logo 图片的代码
BufferedImage logo = ...;
Graphics2D graphics = matrixImage.createGraphics();
graphics.drawImage(logo, 100, 100, 100, 100, null);
登录后复制
  1. 输出二维码:
MatrixToImageWriter.writeToStream(matrix, "PNG", outputStream);
登录后复制

应用场景

Java生成小程序二维码可应用于多种场景,如:

  • 宣传推广:生成携带小程序链接的二维码,贴于海报、宣传单等,引导用户扫描下载。
  • 用户引导:在小程序使用指南中插入二维码,方便用户快速关注小程序。
  • 支付结算:生成付款二维码,用户扫描即可完成支付。
  • 活动报名:生成报名二维码,用户扫描即可在线提交报名信息。

总结

通过使用Java,我们可以轻松生成基础和带有自定义样式的小程序二维码。掌握本文介绍的技术,开发者可以灵活地将二维码集成到各种应用场景中,提升小程序的推广效率和用户体验。

以上就是java生成小程序二维码的详细内容,更多请关注php中文网其它相关文章!

Java生成微信小程序二维码

Java生成微信小程序二维码

以下是Java后台生成一个小程序的完整代码。

import com.alibaba.fastjson.JSONObject;import java.io.BufferedInputStream;import java.io.ByteArrayOutputStream;import java.io.InputStream;import java.io.PrintWriter;import java.net.HttpURLConnection;import java.net.URL;import java.util.Base64;import java.util.HashMap;import java.util.Map;public class WxQrCode { private static final String GETWXACODEUNLIMIT_URL = "https://api.weixin.qq.com/wxa/getwxacodeunlimit?access_token=%s";// 生成小程序码地址 private static final String URL_GET_TOKEN = "https://api.weixin.qq.com/cgi-bin/token";//获取access_token地址 private static final String APP_ID = "";// 小程序appid private static final String APP_SECRET = ""; // 小程序秘钥 public static final String PATH_HOME = ""; /**  * 获取微信Access_Token  * @param appid  * @param secret  * @return  */ public static String getWeixinAccessToken(String appid, String secret){  String url = URL_GET_TOKEN;  Map<String, String> paramMap = new HashMap<String, String>();  paramMap.put("grant_type", "client_credential");  paramMap.put("appid", appid);  paramMap.put("secret", secret);  String content = HttpClientUtils.executeHttpGet(url, paramMap);  Map map = (Map) JsonMapper.fromJsonString(content, HashMap.class);  return (String)map.get("access_token"); } /**  * 生成小程序码返回base64字符串  * @param sceneStr 要携带的参数  * @param accessToken  * @param page 要跳转的小程序页面(必须是已发布的)  * @return  */ public static String getminiqrQr(String sceneStr, String accessToken,String page) {  HttpURLConnection httpURLConnection = null;  try {   URL url = new URL(String.format(GETWXACODEUNLIMIT_.........

Java生成微信小程序二维码的方式有哪些?

Java生成微信小程序二维码的方式有哪些?

大家好我是咕噜美乐蒂,很高兴又见面啦!今天我们来谈一下如何使用Java生成微信小程序二维码,有哪些方式方法呢?
生成微信小程序二维码是开发微信小程序时的常见需求之一。在Java中,我们可以使用多种方式来生成微信小程序二维码。本文将为您介绍几种常用的方式。
一、使用第三方库
1.zxing
zxing是一个开源的二维码生成库,支持多种编程语言,包括Java。我们可以通过引入zxing库来生成微信小程序二维码。
首先,在项目的pom.xml文件中添加zxing库的依赖:
xml
<dependency>

<groupId>com.google.zxing</groupId>
<artifactId>core</artifactId>
<version>3.4.1</version>

</dependency>
然后,可以使用以下代码生成微信小程序二维码:
java
import com.google.zxing.BarcodeFormat;
import com.google.zxing.MultiFormatWriter;
import com.google.zxing.common.BitMatrix;
import com.google.zxing.qrcode.QRCodeWriter;
import com.google.zxing.qrcode.decoder.ErrorCorrectionLevel;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Path;
import java.nio.file.StandardOpenOption;
import java.util.HashMap;
import java.util.Map;
public class QRCodeGenerator {

public static void main(String[] args) {
    String appId = "your_app_id";
    String path = "your_file_path";
    try {
        Map<EncodeHintType, Object> hints = new HashMap<>();
        hints.put(EncodeHintType.CHARACTER_SET, "UTF-8");
        hints.put(EncodeHintType.ERROR_CORRECTION, ErrorCorrectionLevel.L);
        hints.put(EncodeHintType.MARGIN, 1);
        BitMatrix bitMatrix = new MultiFormatWriter().encode(appId, BarcodeFormat.QR_CODE, 128, 128, hints);
        Path outputPath = Path.of(path);
        MatrixToImageWriter.writeToPath(bitMatrix, "PNG", outputPath);
    } catch (Exception e) {
        e.printStackTrace();
    }
}

}
2.Qrcode4j
Qrcode4j是另一个开源的二维码生成库,同样支持Java。我们可以通过引入Qrcode4j库来生成微信小程序二维码。
首先,在项目的pom.xml文件中添加Qrcode4j库的依赖:
xml
<dependency>

<groupId>com.github.kenglxn.qrgen</groupId>
<artifactId>qrgen</artifactId>
<version>2.0</version>

</dependency>
然后,可以使用以下代码生成微信小程序二维码:
java
import net.glxn.qrgen.core.image.ImageType;
import net.glxn.qrgen.javase.QRCode;
import java.io.File;
import java.io.FileOutputStream;
public class QRCodeGenerator {

public static void main(String[] args) {
    String appId = "your_app_id";
    String path = "your_file_path";
    try {
        QRCode qrCode = QRCode.from(appId).to(ImageType.PNG).withSize(128, 128);
        FileOutputStream fileOutputStream = new FileOutputStream(new File(path));
        qrCode.writeTo(fileOutputStream);
        fileOutputStream.close();
    } catch (Exception e) {
        e.printStackTrace();
    }
}

}
二、调用微信小程序接口

除了使用第三方库,我们还可以通过调用微信小程序接口来生成二维码。微信提供了一些API,可以通过发送HTTP请求获取微信小程序二维码。
首先,需要获取微信小程序的access_token,可以参考微信开放平台的文档。
然后,可以使用以下代码调用接口生成微信小程序二维码:
java
import org.apache.http.HttpEntity;
import org.apache.http.HttpResponse;
import org.apache.http.client.methods.HttpGet;
import org.apache.http.impl.client.CloseableHttpClient;
import org.apache.http.impl.client.HttpClients;
import org.apache.http.util.EntityUtils;
import java.io.FileOutputStream;
public class QRCodeGenerator {

public static void main(String[] args) {
    String accessToken = "your_access_token";
    String appId = "your_app_id";
    String path = "your_file_path";
    try {
        String url = "https://api.weixin.qq.com/wxa/getwxacode?access_token=" + accessToken;
        CloseableHttpClient httpClient = HttpClients.createDefault();
        HttpGet httpGet = new HttpGet(url);
        HttpResponse response = httpClient.execute(httpGet);

        HttpEntity entity = response.getEntity();
        if (entity != null) {
            byte[] bytes = EntityUtils.toByteArray(entity);
            FileOutputStream fileOutputStream = new FileOutputStream(path);
            fileOutputStream.write(bytes);
            fileOutputStream.close();
        }
    } catch (Exception e) {
        e.printStackTrace();
    }
}

}
以上是使用Java生成微信小程序二维码的几种常用方式。您可以根据自己的需求和项目情况选择合适的方式来生成微信小程序二维码。无论使用哪种方式,都需要注意保护个人隐私和数据安全,合理使用微信小程序的接口。
好啦,今天美乐蒂就和大家分享到这里啦,小伙伴们有更好的办法可以在评论区打出来哦~~以便大家更方便地操作呢。

今天关于微信小程序二维码如何生成?微信小程序二维码如何生成的讲解已经结束,谢谢您的阅读,如果想了解更多关于java后端生成微信小程序二维码保存本地,将图片路径返回给前端、java生成小程序二维码、Java生成微信小程序二维码、Java生成微信小程序二维码的方式有哪些?的相关知识,请在本站搜索。

本文标签: