小程序二维码的适用场景
- 适用于需要的码数量较少的业务场景
- 总共生成的码数量限制为100,000,请谨慎调用。
获取步骤
接口地址:
https://api.weixin.qq.com/cgi- bin/wxaapp/createwxaqrcode?access_token=ACCESS_TOKEN>
(1)POST 参数说明
参数 | 类型 | 默认值 | 说明 |
---|---|---|---|
path | String | 不能为空,最大长度 128 字节 | |
width | Int | 430 | 二维码的宽度 |
注意:通过该接口生成的小程序二维码,永久有效,数量限制见文末说明,请谨慎使用。用户扫描该码进入小程序后,将直接进入 path 对应的页面。
示例:
{“path”: “pages/index?query=1”, “width”: 430}
注:pages/index 需要在 app.json 的 pages 中定义
(2)请求接口测试
/**
* 获取小程序二维码
* @param url 官方获取二维码地址
* @param width 二维码的宽度 int类型 默认 430
* @param access_token
* @param path
* @return
*/
public static InputStream createwxaqrcode(String url,String access_token,String path,String width){
url = url + "?access_token=" + access_token;
JSONObject jsonParam = new JSONObject();
jsonParam.put("path", path);
jsonParam.put("width", width);
InputStream instreams = doWXPost(url, jsonParam);
if(BL3Utils.isEmpty(instreams)){
System.out.println("出错获取二维码失败!");
}
return instreams;
}
/**
* 请求
* @param url
* @param jsonParam
* @return
*/
public static InputStream doWXPost(String url, JSONObject jsonParam) {
InputStream instreams = null;
HttpPost httpRequst = new HttpPost(url);// 创建HttpPost对象
try {
StringEntity se = new StringEntity(jsonParam.toString(),"utf-8");
se.setContentType("application/json");
se.setContentEncoding(new BasicHeader(HTTP.CONTENT_TYPE,"UTF-8"));
httpRequst.setEntity(se);
HttpResponse httpResponse = new DefaultHttpClient().execute(httpRequst);
if (httpResponse.getStatusLine().getStatusCode() == 200) {
HttpEntity httpEntity = httpResponse.getEntity();
if (httpEntity != null) {
instreams = httpEntity.getContent();
}
}
} catch (UnsupportedEncodingException e) {
e.printStackTrace();
} catch (ClientProtocolException e) {
e.printStackTrace();
} catch (IOException e) {
e.printStackTrace();
}
return instreams;
}
参数介绍:
1. url : https://api.weixin.qq.com/cgi-bin/wxaapp/createwxaqrcode
2. access_token:上面有介绍(getAccessToken这个方法)
3. path:用户扫描该码进入小程序后,将直接进入 path 对应的页面;一般是首页地址”pages/index/index” 也可以带上参数
“pages/index/index?query=1”。
4. width:二维码的宽度 int类型 默认 430。
/* @param instreams 二进制流
* @param imgPath 图片的保存路径
* @param fileName 图片的名称
* @return str 图片保存地址
*/
public static String saveToImgByInputStream(InputStream instreams,String imagePath,String fileName){
String str = "";
String path = "QRimage" + getWFileDirName();
String linuxPath = path.replaceAll("//",File.separator);
if(instreams != null){
boolean b =uploadImages(instreams,imagePath+File.separator+linuxPath, fileName);
if(b){
str =linuxPath+fileName;
}
}
return str;
}
参数介绍
1. instreams: 上面有介绍(createwxaqrcode这个方法)
2. imagePath:保存图片的地址
3. fileName:图片自定义名称(可以自定义 比如:1.jpg、1.png等)。
/**
* IO流保存图片
* @param instreams
* @param imagePath
* @param fileName
* @return
*/
public static boolean uploadImages( InputStream instreams,String imagePath,String fileName) {
File f = new File(imagePath);
f.setWritable(true, false);
boolean flag = false;
try {
// 1K的数据缓冲
byte[] bs = new byte[1024];
// 读取到的数据长度
int len;
// 输出的文件流
File file = new File(imagePath,fileName);
if (!file.getParentFile().exists()) {
file.getParentFile().mkdirs();
try {
// 创建新文件
file.createNewFile();
} catch (IOException e) {
System.out.println("创建新文件时出现了错误。。。");
e.printStackTrace();
}
}
OutputStream os = new FileOutputStream(imagePath+File.separator+fileName);
// 开始读取
while ((len = instreams.read(bs)) != -1) {
os.write(bs, 0, len);
}
// 完毕,关闭所有链接
os.close();
instreams.close();
flag = true;
} catch (IOException e) {
e.printStackTrace();
}
return flag;
}
直接使用下面的代码就可以获取到二维码地址了
String qrcodeUrl = saveToImgByInputStream(instreams,imagePath,fileName);
接口说明
1:通过该接口,仅能生成已发布的小程序的二维码。
2:可以在开发者工具预览时生成开发版的带参二维码。
3:接口1加上接口2,总共生成的码数量限制为100,000,请谨慎调用。
4 : POST 参数需要转成 json 字符串,不支持 form 表单提交。
5 : auto_color line_color 参数仅对小程序码生效。
最后请大家注意
微信小程序码 和 微信小程序二维码 是有区别的文章来源:https://www.toymoban.com/news/detail-606597.html
微信小程序码是圆的,微信小程序二维码是方的文章来源地址https://www.toymoban.com/news/detail-606597.html
到了这里,关于Java 获取小程序二维码的几种方式的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!