小程序
小游戏
企业微信
微信支付
扫描小程序码分享
wx.config分享功能 {errMsg: config:invalid signature} ,官方说的方法都试过了,感觉没问题,一提到线上就报这个错误
1 个回答
加粗
标红
插入代码
插入链接
插入图片
上传视频
代码贴出来看看,应该是你哪里的逻辑处理不正确
你好,麻烦通过点击下方“反馈信息”按钮,提供出现问题的。
weiXin.setTimestamp(System.currentTimeMillis() / 1000);
weiXin.setNonceStr(MD5.create().digestHex(String.valueOf(System.currentTimeMillis())));
HttpHeaders headers = new HttpHeaders();
String url = "https://api.weixin.qq.com/cgi-bin/token?grant_type=client_credential&appid=xxxxx&secret=xxxxx";
ResponseEntity<Token> res = restTemplate.exchange(url, HttpMethod.GET, new HttpEntity<String>(headers), Token.class);
Token body = res.getBody();
String urls = "https://api.weixin.qq.com/cgi-bin/ticket/getticket?access_token=" + body.getAccess_token() + "&type=jsapi";
ResponseEntity<Tokens> re = restTemplate.exchange(urls, HttpMethod.GET, new HttpEntity<String>(headers), Tokens.class);
Tokens body1 = re.getBody();
String s = "jsapi_ticket=" + body1.getTicket() + "&noncestr=" + weiXin.getNonceStr() + "×tamp=" + weiXin.getTimestamp()
+ "&url=" + url1;
System.out.println(body1.getTicket());
weiXin.setSignature(SignatureUtil.sha1Encrypt(s));
weiXin.setAppid("xxxxx");
return weiXin;
$(function () {
$.ajax({
type: "GET",
url: "/wx/findAll?url1=" + location.href.split("#")[0],
success: function (data) {
console.log(data)
wx.config({
debug: true, // 开启调试模式,调用的所有api的返回值会在客户端alert出来,若要查看传入的参数,可以在pc端打开,参数信息会通过log打出,仅在pc端时才会打印。
appId: data.appid, // 必填,公众号的唯一标识
timestamp: data.timestamp, // 必填,生成签名的时间戳
nonceStr: data.nonceStr, // 必填,生成签名的随机串
signature: data.signature,// 必填,签名
jsApiList: [
'updateAppMessageShareData',
'updateTimelineShareData'
] // 必填,需要使用的JS接口列表
});
wx.ready(function () {
// config信息验证后会执行ready方法,所有接口调用都必须在config接口获得结果之后,config是一个客户端的异步操作,所以如果需要在页面加载时就调用相关接口,则须把相关接口放在ready函数中调用来确保正确执行。对于用户触发时才调用的接口,则可以直接调用,不需要放在ready函数中。
wx.checkJsApi({
jsApiList: ["updateAppMessageShareData", "updateTimelineShareData"], // 需要检测的JS接口列表,所有JS接口列表见附录2,
success: function (res) {
alert.log(JSON.stringify(res))
// 以键值对的形式返回,可用的api值true,不可用为false
// 如:{"checkResult":{"chooseImage":true},"errMsg":"checkJsApi:ok"}
}
// 设置成功
关注后,可在微信内接收相应的重要提醒。
请使用微信扫描二维码关注 “微信开放社区” 公众号
代码贴出来看看,应该是你哪里的逻辑处理不正确
weiXin.setTimestamp(System.currentTimeMillis() / 1000);
weiXin.setNonceStr(MD5.create().digestHex(String.valueOf(System.currentTimeMillis())));
HttpHeaders headers = new HttpHeaders();
String url = "https://api.weixin.qq.com/cgi-bin/token?grant_type=client_credential&appid=xxxxx&secret=xxxxx";
ResponseEntity<Token> res = restTemplate.exchange(url, HttpMethod.GET, new HttpEntity<String>(headers), Token.class);
Token body = res.getBody();
String urls = "https://api.weixin.qq.com/cgi-bin/ticket/getticket?access_token=" + body.getAccess_token() + "&type=jsapi";
ResponseEntity<Tokens> re = restTemplate.exchange(urls, HttpMethod.GET, new HttpEntity<String>(headers), Tokens.class);
Tokens body1 = re.getBody();
String s = "jsapi_ticket=" + body1.getTicket() + "&noncestr=" + weiXin.getNonceStr() + "×tamp=" + weiXin.getTimestamp()
+ "&url=" + url1;
System.out.println(body1.getTicket());
weiXin.setSignature(SignatureUtil.sha1Encrypt(s));
weiXin.setAppid("xxxxx");
return weiXin;
$(function () {
$.ajax({
type: "GET",
url: "/wx/findAll?url1=" + location.href.split("#")[0],
success: function (data) {
console.log(data)
wx.config({
debug: true, // 开启调试模式,调用的所有api的返回值会在客户端alert出来,若要查看传入的参数,可以在pc端打开,参数信息会通过log打出,仅在pc端时才会打印。
appId: data.appid, // 必填,公众号的唯一标识
timestamp: data.timestamp, // 必填,生成签名的时间戳
nonceStr: data.nonceStr, // 必填,生成签名的随机串
signature: data.signature,// 必填,签名
jsApiList: [
'updateAppMessageShareData',
'updateTimelineShareData'
] // 必填,需要使用的JS接口列表
});
wx.ready(function () {
// config信息验证后会执行ready方法,所有接口调用都必须在config接口获得结果之后,config是一个客户端的异步操作,所以如果需要在页面加载时就调用相关接口,则须把相关接口放在ready函数中调用来确保正确执行。对于用户触发时才调用的接口,则可以直接调用,不需要放在ready函数中。
wx.checkJsApi({
jsApiList: ["updateAppMessageShareData", "updateTimelineShareData"], // 需要检测的JS接口列表,所有JS接口列表见附录2,
success: function (res) {
alert.log(JSON.stringify(res))
// 以键值对的形式返回,可用的api值true,不可用为false
// 如:{"checkResult":{"chooseImage":true},"errMsg":"checkJsApi:ok"}
}
});
});
// 设置成功