微信JSSDK调用微信扫一扫功能的方法

作者:hfhwfw 时间:2024-04-29 13:46:02 

如何利用微信JSSDK调用微信扫一扫功能?具体内容如下

1. 确保有 调起微信扫一扫接口 权限,测试号可能不行;

2. 导入相关JS


<script type="text/javascript" http://test.com/zepto_touch.js"></script>
<script type="text/javascript" src="http://res.wx.qq.com/open/js/jweixin-1.0.0.js"></script>

3. 页面触发扫码元素


<img src="../../../images/right.jpg" onclick="scanCode()" class="img">

4. 相关JS代码


<script type="text/javascript">
var _appId = "wxz88dbd30e5580e59";
var _data = {
 appId : _appId,
 url : location.href,
 t : Math.random()
};
var _getWechatSignUrl = 'http://test.com/getWechatSign.do';

// 获取微信签名
$.ajax({
 url : _getWechatSignUrl,
 data : _data,
 success : function(o) {
  console.log(o);
  if (o.returnCode == "00") {
   wxConfig(o.detail[0].timestamp, o.detail[0].nonceStr, o.detail[0].signature);
  }
 }
});
function wxConfig(_timestamp, _nonceStr, _signature) {
 //alert('获取数据:'+_timestamp+'\n'+_nonceStr+'\n'+_signature);
 console.log('获取数据:' + _timestamp + '\n' + _nonceStr + '\n' + _signature);
 wx.config({
  debug : true, // 开启调试模式,调用的所有api的返回值会在客户端alert出来,若要查看传入的参数,可以在pc端打开,参数信息会通过log打出,仅在pc端时才会打印。
  appId : _appId, // 必填,公众号的唯一标识
  timestamp : _timestamp, // 必填,生成签名的时间戳
  nonceStr : _nonceStr, // 必填,生成签名的随机串
  signature : _signature,// 必填,签名,见附录1
  jsApiList : [ 'onMenuShareTimeline', 'onMenuShareAppMessage',
    'onMenuShareQQ', 'onMenuShareWeibo', 'scanQRCode' ]
 // 必填,需要使用的JS接口列表,所有JS接口列表见附录2
 });
}
function scanCode() {
 wx.scanQRCode({
  needResult : 1,
  scanType : [ "qrCode", "barCode" ],
  success : function(res) {
   console.log(res)
   alert(JSON.stringify(res));
   var result = res.resultStr;
  },
  fail : function(res) {
   console.log(res)
   alert(JSON.stringify(res));

}
 });
}
</script>

5. 获取签名接口getWechatSign.do各值生成方式

timestamp


Long timestamp = System.currentTimeMillis() / 1000;

nonceStr


String nonceStr = RandomStringUtils.randomAlphanumeric(16);

signature


public static String getSign(String jsapi_ticket, String noncestr, Long timestamp, String url)
 throws NoSuchAlgorithmException {
String shaStr = "jsapi_ticket=" + jsapi_ticket + "&noncestr=" + noncestr + "×tamp=" + timestamp + "&url="
  + url;
MessageDigest mDigest = MessageDigest.getInstance("SHA1");
byte[] result = mDigest.digest(shaStr.getBytes());
StringBuffer signature = new StringBuffer();
for (int i = 0; i < result.length; i++) {
 signature.append(Integer.toString((result[i] & 0xff) + 0x100, 16).substring(1));
}
return signature.toString();
}

6. 微信参考文档

获取access_token  https://mp.weixin.qq.com/wiki?t=resource/res_main&id=mp1421140183
获取jsapi_ticket  https://mp.weixin.qq.com/wiki?t=resource/res_main&id=mp1421141115

标签:JSSDK,微信,扫一扫
0
投稿

猜你喜欢

  • python实现简单的计时器功能函数

    2023-02-13 08:33:55
  • vue 表单之通过v-model绑定单选按钮radio

    2023-07-02 16:28:04
  • SQLServer导出数据到MySQL实例介绍

    2024-01-13 08:07:17
  • django rest framework 实现用户登录认证详解

    2023-05-10 10:19:05
  • FrontPage创建HTML/ASP混合页面

    2008-05-08 14:26:00
  • BootStrap的select2既可以查询又可以输入的实现代码

    2024-04-28 10:18:41
  • 详解pytorch tensor和ndarray转换相关总结

    2023-08-18 20:03:51
  • Vue实现未登录跳转到登录页的示例代码

    2023-07-02 17:02:49
  • Django博客系统注册之创建用户模块应用

    2021-08-06 15:15:20
  • python网络编程之文件下载实例分析

    2021-06-04 08:02:29
  • asp.net连接查询SQL数据库并把结果显示在网页上(2种方法)

    2024-01-12 13:28:10
  • 谷歌浏览器Chrome的javascript引擎

    2008-09-04 12:24:00
  • Python实现的对一个数进行因式分解操作示例

    2023-01-11 04:30:40
  • Django DRF路由与扩展功能的实现

    2022-05-03 09:43:15
  • Python中支持向量机SVM的使用方法详解

    2021-02-08 00:41:01
  • 在sql Server自定义一个用户定义星期函数

    2012-02-12 15:47:28
  • python调试工具Birdseye的使用教程

    2023-08-22 19:18:48
  • python实现的系统实用log类实例

    2022-08-02 18:50:57
  • 系统高吞吐量下的数据库重复写入问题分析解决

    2024-01-17 07:37:21
  • python map比for循环快在哪

    2021-06-16 09:39:04
  • asp之家 网络编程 m.aspxhome.com