探索flutter框架开发的app在移动应用市场的潜力与挑战
1510
2023-03-09
基于binarywang封装的微信工具包生成二维码
一、引包(微信开发工具包)
工具包代码详细链接:https://github.com/binarywang
二、代码
这边是直接返回base64图片形式。如果有需要其他请自行处理。
@ApiOperation("生成二维码")
@ApiImplicitParams({
@ApiImplicitParam(name="codeType",value = "类型",dataType = "String",required = true,paramType = "query"),
@ApiImplicitParam(name="parameterValue",value = "参数值",dataType = "String",required = true,paramType = "query")
})
@GetMapping(value = "/createQrCode")
public String createQrCode(@RequestParam("codeType") Stringhttp:// codeType,
@RequestParam("parameterValue") String parameterValue) throws HttpProcessException, IOException {
//调用工具包的服务
WxMaService wxMaService = new WxMaServiceImpl();
WxMaDefaultConfigImpl wxMaDefaultConfigImpl = new WxMaDefaultConfigImpl();
wxMaDefaultConfigImpl.setAppid(WxConfig.appid); //小程序appId
wxMaDefaultConfigImpl.setSecret(WxConfig.secret); //小程序secret
wxMaService.setWxMaConfig(wxMaDefaultConfigImpl);
// 设置小程序二维码线条颜色为黑色
WxMaCodeLineColor lineColor = new WxMaCodeLineColor("0", "0", "0");
byte[] qrCodeBytes = null;
try {
//其中codeType以及parameterValue为前端页面所需要接收的参数。
qrCodeBytes = wxMaService.getQrcodeService().createWxaCodeBytes("pages/index/index?codeType=" + codeType + "¶meterValue=" + parameterValue, 30, false, lineColor, false);
} catch (WxErrorException e) {
e.printStackTrace();
}
String qrCodeStr= Base64.encodeBase64String(qrCodeBytes);
return qrCodeStr;
}
版权声明:本文内容由网络用户投稿,版权归原作者所有,本站不拥有其著作权,亦不承担相应法律责任。如果您发现本站中有涉嫌抄袭或描述失实的内容,请联系我们jiasou666@gmail.com 处理,核实后本网站将在24小时内删除侵权内容。
发表评论
暂时没有评论,来抢沙发吧~