- 上传草稿箱接口权限问题,没有认证的公众号是不能调取上传草稿箱接口吗?
你好,我用的公众微信号api尝试上传素材成功了,但是在调用上传草稿箱的时候接口调用失败,我的问题是我的公众微信号未认证是否不具有上传草稿箱的接口权限
05-17 - wx.uploadFile formData 携带参数失效
let data = { "type": "jpg", "spec": "1", "bk": "blue", "beauty_degree": 1.5 } data.photo = base64Data; wx.uploadFile({ url: 'https://www.pudding233.com/api/data.php', //后端接口 filePath: tempFilePaths[0], method: 'POST', name: 'file', header: { "Content-Type": "application/json" }, // header: { 'Content-Type': 'multipart/form-data' }, formData: JSON.stringify(data), success: function (res) { wx.hideLoading({ success: (res) => {}, }); if (res.statusCode !== 200) { wx.showModal({ title: '提示', content: '上传失败', showCancel: false }); return; } else { console.log(res.data); wx.navigateTo({ url: "../imgDetail/imgDetail?img=" + res.data, events: {}, success: function (res) {} }) } }, fail(e) { wx.showModal({ title: '提示', content: '上传失败', showCancel: false }); }, complete() { wx.hideToast(); //隐藏Toast } })
2022-04-23 - 网站引用微信分享链接的未生效,是哪里出现了问题?
参考页面:https://www.oppo.com/cn/smartphones/series-find-n/find-n/ 使用的js-sdk 版本 6.0 接口数据: {"appId":"wxdeb5dc277a2c46bf", "timestamp":1640762788, "nonceStr":"ki9m3xng178u8l58", "url":"https://www.oppo.com/cn/smartphones/series-find-n/find-n/", "signature":"e17ef8b8488fe54c6e2cc8f59178843393871e20"} 开发工具测试结果: [图片] 显示js api 已经调用; 实际手机中点击链接文字地址打开分享结果为链接文字,从链接卡片中打开分享结果为链接卡片;
2021-12-29