- 如何实现推送消息到企业微信群?
想实现有报错消息自动告警到企微群,这个功能有大佬实现过吗?感谢
2021-07-06 - 云开发真机调试(体验版)报错fail requestID 如何处理?
看了很多人的帖子都出现了这个问题,麻烦有没有微信技术小伙伴处理下?本地调试没有问题,但是真机(小米K20pro)调试以及上传体验版不行。 报错如下:<Error: errCode: -404011 cloud function execution error | errMsg: cloud.callFunction:fail requestID , cloud function service error code -501000, error message Environment not found (callid 1608998695702-0.8170563143498757); at cloud.callFunction api; > 环境ID:myhouse-3gxttui672d66daf 云函数:updatehouse const cloud = require('wx-server-sdk') cloud.init({ env: cloud.DYNAMIC_CURRENT_ENV }) const db = cloud.database() const _ = db.command function updatehouse(event) { return db.collection('houseList').where({ key: event.key, subKey: event.subKey }).update({ data: { flootContent: _.push(event.addhouse) } }) } exports.main = async (event, context) => { try{ let res = updatehouse(event) return res; } catch (e) { return e } }
2020-12-27 - 小程序能否跳转指定APP?
目前是做了一个分享卡片,请问下被分享人通过卡片打开小程序。在小程序内能否跳转到指定APP呢?目前已经有APPID。谢谢亲们指点。
2020-07-16 - 关于 jscode2session 接口获取到 openid 是否需要解析?
目前已经知道 auth.code2Session 可以获取 openid 以及 unionid 。想问下大家,这个获取到的openid 以及 unionid是否还需要进行解密之类的步骤?还是可以直接用呢?
2020-07-13