- 共享环境订阅消息
const result = await cloud.openapi({appid: 用户订阅的小程序的appid}).subscribeMessage.send({ touser: 用户在订阅小程序对应的openid , page: 'pages/index/index', lang: 'zh_CN', data: { thing1: { value: '测试标题' }, thing2: { value: '测试内容' }, time3: { value:'2019年10月1日 15:01' }, thing7: { value: '测试提示' } }, templateId: 'I0r_HCy1XCtPYaBcWrqHkD8lXug63uMU0klaU_5tnrI', miniprogram_state: 'developer' })
2023-08-24 - 云函数发送小程序订阅消息subscribeMessage.send 失败?error: -60510
求帮助! 环境共享 ,小程序A云函数种发送小程序B的订阅消息失败 Error: errCode: -501006 invalid common parameters | errMsg: subscribeMessage.send:fail wx api error: -605108, appid unauthorized at callGeneralOpenAPI
2023-08-24 - 每次获取jscode 后面带"-"都会请求openid失败
[图片] 问题 如图
2018-03-07 - jscode返回的格式不对
每次 请求回来的code 最后一位 是"-"的话 请求后台的接口 就会出现 404 有一定的概率出现这个问题,查了很多资料都没有解决,请尽快回复谢谢 [图片]
2018-03-06 - 小程序不在合法域名列表
昨天更新开发者工具更新了,今天上午还是可以正常开发,下午突然就 提示不在合法域名列表
2018-03-05 - 请问为什么开发版本的小程序用手机测的时候只能能开调试才能获取openid?
代码如下 wx.login({ //获取code success: function (res) { let code = res.code //返回code let APPID = "wx07de8bea337407f2"; let SECRET = "f88ba62fbfa5b647487a3ddc91c3f151"; wx.request({ url: 'https://api.weixin.qq.com/sns/jscode2session?appid=' + APPID + '&secret=' + SECRET + '&js_code=' + res.code+ '&grant_type=authorization_code', data: {}, header: { 'content-type': 'application/json' }, success: function (res) { let openid = res.data.openid //返回openid console.log(openid) getApp().globalData.openid = openid; wx.setStorage({ key: 'openid', data: openid, success: function(res) {}, fail: function(res) {}, complete: function(res) {}, }) wx.getUserInfo({ success: function(res) { getApp().globalData.userInfo = res.rawData; }, fail: function(res) {}, complete: function(res) {}, }) }, fail(res) { // console.log("q") } }) } });
2017-11-19