求代码,借鉴下
5 回复
String url = "https://api.weixin.qq.com/wxa/getwxacodeunlimit?access_token="+access_token;
JSONObject paramJson = new JSONObject();
//{"scene":123456,"path": "pages/index?query=1", "width": 430}
paramJson.put("scene", "a=1234567890");
paramJson.put("width", 430);
String re= HttpKit.post(url,paramJson.toString());
```
添加回复
请先登陆