JSSDK使用步骤
步骤一:绑定域名
先登录微信公众平台进入“公众号设置”的“功能设置”里填写“JS接口安全域名”。
备注:登录后可在“开发者中心”查看对应的接口权限。
JS接口安全域名官方说法是:开发者可在该域名下调用微信开放的JS接口
[划重点]这里有注意??的地方:
如果这两步没有做好,就会报invalid url domain 的错。
步骤二:引入 JS 文件
在需要调用 JS 接口的页面引入如下 JS 文件,(支持https):http://res.wx.qq.com/open/js/jweixin-1.6.0.js
如需进一步提升服务稳定性,当上述资源不可访问时,可改访问:http://res2.wx.qq.com/open/js/jweixin-1.6.0.js (支持https)。
备注:支持使用 AMD/CMD 标准模块加载方法加载
步骤三:通过 config 接口注入权限验证配置
所有需要使用 JS-SDK 的页面必须先注入配置信息,否则将无法调用
wx.config({
debug: true,
appId: '',
timestamp: ,
nonceStr: '',
signature: '',
jsApiList: []
});
其中appId , timestamp , nonceStr , signature 需从后台获取。
[划重点]这里有注意??的地方:
- 获取
appId , timestamp , nonceStr , signature 这些参数时,需要分享路径作为参数,这个路径要和分享之后访问的路径一样,所以需要去掉微信增加的额外参数,即:
const url = window.location.href.split('#')[0]
获取签名如果没处理好,就会报invalid signature 的错误。
分享接口
请注意,原有的 wx.onMenuShareTimeline 、wx.onMenuShareAppMessage 、wx.onMenuShareQQ 、wx.onMenuShareQZone 接口,即将废弃。请尽快迁移使用客户端6.7.2及JSSDK 1.4.0以上版本支持的 wx.updateAppMessageShareData 、wx.updateTimelineShareData 接口。
自定义“分享给朋友”及“分享到QQ”按钮的分享内容(1.4.0)
wx.ready(function () {
wx.updateAppMessageShareData({
title: '',
desc: '',
link: '',
imgUrl: '',
success: function () {
}
})
});
自定义“分享到朋友圈”及“分享到 QQ 空间”按钮的分享内容(1.4.0)
wx.ready(function () {
wx.updateTimelineShareData({
title: '',
link: '',
imgUrl: '',
success: function () {
}
})
});
完整参考代码
const { title, desc, thumb } = this.state.playDetailInfo
const url = window.location.href.split('#')[0]
console.log('url :>> ', url, title, desc)
const link = window.location.href
const imgUrl = thumb || Global.logoUrl
commonActions.getWxShare({ url }).then(res => {
console.log('weixin分享res :>> ', res)
if (res.code === 200 && res.data) {
const { appId, timestamp, nonceStr, signature } = res.data
window.wx.config({
debug: false,
appId,
timestamp,
nonceStr,
signature,
jsApiList: [
'updateTimelineShareData',
'updateAppMessageShareData',
'onMenuShareTimeline',
'onMenuShareAppMessage'
]
})
window.wx.ready(() => {
window.wx.updateAppMessageShareData({
title,
desc,
link,
imgUrl,
success: function () {
}
})
window.wx.updateTimelineShareData({
title,
link,
imgUrl,
success: function () {
}
})
})
window.wx.error(res => {
console.log('window.wx.error :>> ', res)
})
}
}).catch(err => {
console.log('weixin分享error :>> ', err)
})
|