- 内容检测总是报40001,token确实是最新的
https://developers.weixin.qq.com/miniprogram/dev/OpenApiDoc/sec-center/sec-check/msgSecCheck.html
2024-04-07 - ios设置朋友圈分享后小图不显示?
onShareTimeline: function () { let imageUrl = 'https://kanyu.zkyyhj.com/mall/file/d?f=product-HxzMstThUgFL-mmexport1710750787724.png&p=tn%28h%2C160%2C320%29&sign=D1c%2FRadmtKOeQdYwNq272yn8GC8%3D'; return { title: `商品:111`, imageUrl: imageUrl, } },
2024-03-19 - 用onShareTimeline分享时,特殊格式图片链接小图在真机不显示?
imageUrl 是 https://kanyu.zkyyhj.com/mall/file/d?f=-OfZZqpNXvmMV-11.jpg&p=tn%28h%2C640%2C1280%29&sign=2UNF1OJ7%2B8rf6jXTZQBS7q2yfxY%3D url可以打印,但是在真机上不显示 onShareTimeline: function () { let imageUrl; const { bigPictureList,brand } = this.data.detail if (bigPictureList && bigPictureList.length > 0) { imageUrl = bigPictureList[0].originalUrl; } const url = imageUrl || postUrl console.log( url,'这是谁') return { title: `商品:${ brand }`, imageUrl: imageUrl || postUrl, } },
2024-03-18 - 安卓camera设置setZoom后报错zoom multiple not support?
https://developers.weixin.qq.com/s/jPFWcjms7QP0微信版本:8.0.47,使用setZoom,进行相机camera设置缩放报错operateCamera:fail: zoom multiple not support,调用基础库3.3.4,ios可以正常缩放,安卓手机不行,试了华为p40,小米的一款手机
2024-02-28