- 请问一下,普通微信用户给企业微信用户首次发送信息有回调事件吗?
请问一下,普通微信用户给企业微信用户首次发送信息有回调事件吗?
2023-03-07 - 微信开放平台第三方平台 代开发小程序 有api直接添加吗?
微信开放平台第三方平台 代开发小程序 有api直接添加吗?
2023-03-03 - 接口上传视频素材一直没有审核通过 的原因?
接口上传视频素材一直没有审核通过 是需要在接口定义审核还是官方那边审核呢?
2021-04-24 - 微信小程序中文输入法下输入英文不触发键盘事件?
中文输入法的时候输入拼音不会触发input事件吗?[图片]
2021-04-12 - 公众号h5页面一次性订阅号无法发送通知问题
已在公众号开发开放标签,拉起订阅授权,但是授权后后台一次消息都不能发送!提示:array(2) { ["errcode"]=> int(43101) ["errmsg"]=> string(61) "user refuse to accept the msg rid: 606d26d1-21203a09-21281333" }
2021-04-07 - 微信小程序调用wx.joinVoIPChat api一直显示签名错误问题?
//index.js 验证文档上默认的参数返回签名一致,点击调用的时候一直出现 签名错误问题 //获取应用实例 const app = getApp() Page({ data: { motto: 'Hello World', userInfo: {}, hasUserInfo: false, canIUse: wx.canIUse('button.open-type.getUserInfo'), data:{} }, onLoad:function(){ var t = this wx.login({ complete: (res) => { if(res.code){ wx.request({ data:{code:res.code}, url: 'https://www.lefakeji.com/api/user/getwxuserinfo', success:(re)=>{ var data = re.data wx.checkSession({ complete: (res) => { console.log(res) }, }) console.log(re) t.setData({ data:data }) } }) } }, }) }, joinVoIPChat:function(){ var t = this wx.getSetting({ success:function(r){ if(r.authSetting['scope.record']){ var data = t.data.data console.log(data.sign) console.log(data.nonceStr) console.log(data.timeStamp) console.log(data.groupId) wx.joinVoIPChat({ signature:data.sign, nonceStr:data.nonceStr, timeStamp:parseInt(data.timeStamp), groupId:data.groupId, complete:(re)=>{ console.log(re) wx.showModal({ title: '提示', content: re.errMsg, success (res) { if (res.confirm) { console.log('用户点击确定') } else if (res.cancel) { console.log('用户点击取消') } } }) } }) }else{ wx.startRecord({ complete: (res) => { wx.stopRecord({ complete: (res) => {}, }) }, }) } } }) return wx.startRecord({ success: (res) => { }, fail:(re)=>{ console.log(re) } }) } })
2020-07-02 - service_id 怎么获取
您好,请问小程序开启服务时的请求参数service_id怎么获取呢。
2020-06-05