以下是获取小程序码的util,因为返回的类型是图片流,所以使用流进行接收
/**
* 方法作用:第三方获取授权方小程序-获取unlimited小程序码
*
*
* customerId=001579cf71344efe&comId=1
*
* @param accessToken 第三方平台接口调用令牌authorizer_access_token
* @param scene 最大32个可见字符,只支持数字,大小写英文以及部分特殊字符:!#$&'()*+,/:;=?@-._~,其它字符请自行编码为合法字符(因不支持%,中文无法使用 urlencode 处理,请使用其他编码方式)
* @param page 必须是已经发布的小程序存在的页面(否则报错),例如 pages/index/index, 根路径前不要填加 /,不能携带参数(参数请放在scene字段里),如果不填写这个字段,默认跳主页面
* @param width 二维码的宽度,单位 px,最小 280px,最大 1280px
* @param autoColor 自动配置线条颜色,如果颜色依然是黑色,则说明不建议配置主色调,默认 false
* @param lineColor auto_color 为 false 时生效,使用 rgb 设置颜色 例如 {"r":"xxx","g":"xxx","b":"xxx"} 十进制表示
* @param isHyaline 是否需要透明底色,为 true 时,生成透明底色的小程序
*
* @return 如果调用成功,会直接返回图片二进制内容,如果请求失败,会返回 JSON 格式的数据
* buffer 返回的图片 Buffer
* contentType 图片类型。
* errcode 错误码。
* errmsg 错误信息
*
* 详情:https://developers.weixin.qq.com/doc/oplatform/Third-party_Platforms/2.0/api/qrcode/getwxacodeunlimit.html
* @author jiangchanglin
* @date 2022/2/24 14:38
**/
public static String getwxacodeunlimit(String accessToken, String scene, String page, Integer width, boolean autoColor, Object lineColor, boolean isHyaline) {
log.info("入参为:access_token:" + accessToken + "----scene:" + scene + "----page:" + page + "----width:" + width + "----auto_color:" + autoColor + "----line_color:" + lineColor + "----is_hyaline:" + isHyaline);
JSONObject paramMap = new JSONObject();
paramMap.put("scene", scene);
paramMap.put("page", page);
paramMap.put("width", ObjectUtils.isNotEmpty(width) ? width : 350);
paramMap.put("auto_color", ObjectUtils.isNotEmpty(autoColor) ? autoColor : 350);
paramMap.put("line_color", lineColor);
paramMap.put("is_hyaline", isHyaline);
String createQrCodeUrl = "https://api.weixin.qq.com/wxa/getwxacodeunlimit?access_token=" + accessToken;
String base64Code = "";
PrintWriter out = null;
InputStream in = null;
try {
URL realUrl = new URL(createQrCodeUrl);
// 打开和URL之间的连接
URLConnection conn = realUrl.openConnection();
// 设置通用的请求属性
conn.setRequestProperty("accept", "*/*");
conn.setRequestProperty("connection", "Keep-Alive");
conn.setRequestProperty("user-agent",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1;SV1)");
// 发送POST请求必须设置如下两行
conn.setDoOutput(true);
conn.setDoInput(true);
// 获取URLConnection对象对应的输出流
out = new PrintWriter(conn.getOutputStream());
// 发送请求参数,利用connection的输出流,去写数据到connection中,我的参数数据流出我的电脑内存到connection中,让connection把参数帮我传到URL中去请求。
out.print(paramMap);
// flush输出流的缓冲
out.flush();
//获取URL的connection中的输入流,这个输入流就是我请求的url返回的数据,返回的数据在这个输入流中,流入我内存,我将从此流中读取数据。
in = conn.getInputStream();
//定义个空字节数组
byte[] data = null;
// 读取图片字节数组
try {
//创建字节数组输出流作为中转仓库,等待被写入数据
ByteArrayOutputStream swapStream = new ByteArrayOutputStream();
byte[] buff = new byte[100];
int rc = 0;
while ((rc = in.read(buff, 0, 100)) > 0) {
//向中转的输出流循环写出输入流中的数据
swapStream.write(buff, 0, rc);
}
//此时connection的输入流返回给我们的请求结果数据已经被完全地写入了我们定义的中转输出流swapStream中
data = swapStream.toByteArray();
} catch (IOException e) {
e.printStackTrace();
} finally {
if (in != null) {
try {
in.close();
} catch (IOException e) {
e.printStackTrace();
}
}
}
base64Code = new String(Objects.requireNonNull(Base64.encodeBase64(data)));
//Base64转byte[]数组
log.info("第三方获取授权方小程序authorizer_access_token的接口返回参数base64转码后为:{}", base64Code);
} catch (Exception e) {
log.info("发送 POST 请求出现异常!" + e);
e.printStackTrace();
}
// 使用finally块来关闭输出流、输入流
finally {
try {
if (out != null) {
out.close();
}
if (in != null) {
in.close();
}
} catch (IOException ex) {
ex.printStackTrace();
}
}
return base64Code;
}
好详细,值得收藏