这一章将介绍通过扫码实现微信跳转 。
前提:从微信公众号那边获取Appid , secret , grantType三个参数备用 。
1、获取微信跳转链接接口该接口主要是获取能重定向到扫码后页面的接口链接 。
@GET@Path(value = https://www.isolves.com/it/cxkf/bk/2021-09-07/"getData")@Produces(MediaType.APPLICATION_JSON)public Response getData() {Map
2、二维码页面该页面可以通过扫码进行跳转 , 或者复制链接在微信中打开实现跳转 。
<input style="width: 1px;height: 1px;" id="url" value=https://www.isolves.com/it/cxkf/bk/2021-09-07/"" type="text" />
【微信扫码实现跳转】function convertCanvasToImage() {var image = new Image();var canvas = document.getElementsByTagName('canvas')[0];image.src = https://www.isolves.com/it/cxkf/bk/2021-09-07/canvas.toDataURL("image/png");return image;}$(function() {//可以直接复制链接在微信中 , 然后点击链接可跳转到与扫码的同一个界面var url = "https://open.weixin.qq.com/connect/oauth2/authorize?appid="+ appid + "&redirect_uri=" + linkUrl; //linkUrl是后台getData方法的url+"&response_type=code&scope=snsapi_base&state=STATE#wechat_redirect";$("#url").val( url);$("#pic").qrcode({render: "canvas", //table方式width: 170, //宽度height: 170, //高度text: url //任意内容});var img = convertCanvasToImage();$("canvas").remove();$('#Code').append(img);$("#copyLink").click(function() {var copyText = $("#url");copyText.select();//选择document.execCommand("Copy");//执行复制alert("复制成功!");})});
微信自动调用oauth2/authorize接口 , 运行完接口后得到一次性的code , 会自动重定向到redirect_uri?code=XXX&response_type=code&scope=snsapi_base&state=STATE&connect_redirect=1#wechat_redirect
3、跳转的oauth接口该接口可通过一次性的code获取用户的openId , 然后重定向到扫码后的页面 。(微信会两次回调这个接口 , 第一次的code是有值的 , 第二次code为空!)
@GET@Path(value = https://www.isolves.com/it/cxkf/bk/2021-09-07/"oauth")public void oauth(@Context HttpServletResponse httpResponse, @QueryParam("code") String code) {String indexUrl = "https://XXXX.com/项目名/ProduceDeatil.html"; //微信扫码跳转的页面String wxUrl = "https://api.weixin.qq.com/sns/oauth2/access_token?appid=%s&secret=%s&code=%s&grant_type=%s";wxUrl = String.format(wxUrl, appId, secret, code, grantType);String response = HttpUtil.sendGet(wxUrl);if (response == null) {logger.error("微信access_token接收失败");return;}JSONObject jsonObject = JSONObject.parseobject(response);String openid = (String) jsonObject.get("openid");try {httpResponse.sendRedirect(indexUrl + "?openid=" + openid);} catch (IOException e) {e.printStackTrace();}}
推荐阅读
- nginx简易实现权限登录
- 抓住“企业微信+视频号”!这可能是微信留给B端商家最后的机会
- 微信|史无前例!微信上线朋友圈出框式广告:裸眼3D太真实
- 微信|微信官方公布四月朋友圈十大谣言:包括五一后全国关闭所有游戏等
- 为实现全球通信,至少需要发射多少颗卫星-全球卫星网络通信-
- 微信新规!官方察觉这5种行为将直接封号处理,不少人“中招”
- Flink的设计与实现:集群资源管理
- 错删了微信好友怎么办?
- 如何把微信和支付宝的收款二维码合成一个?
- 在谷歌云上自建 K8s 集群并使用 VPC Native 方式实现容器网络互通