- 开放平台认证的一些问题?
[图片][图片][图片] @官方,你们这算是在欺骗消费者吗?
2023-08-25 - 公众号和小程序主体不一样,会影响小程序发生公众号模版消息吗?
之前通过小程序发生公众号模板消息是正常的,今天把小程序运营主体改了,导致发现消息报错: 接口地址:https://developers.weixin.qq.com/miniprogram/dev/api-backend/open-api/uniform-message/uniformMessage.send.html 返回结果;{"errcode":40013,"errmsg":"invalid appid rid: 619f852b-1e3a91aa-7b649ef8"}
2021-11-25 - 请问有通过微信公众号发布文章的API接口?
就是后台通过对接微信公众号接口来发送图文消息的接口,有吗?各位大神~
2021-03-12 - wx.previewMedia ios真机不能播放本地视频
https://developers.weixin.qq.com/minigame/dev/api/media/image/wx.previewMedia.html // 显示图片和视频 showImages: function (data) { var type = data.currentTarget.dataset.type var baseUrl = app.globalData.API_BASE_URL + "/file/getFile/" var url = baseUrl + data.currentTarget.dataset.url var ext = url.substring(url.lastIndexOf("."), url.length); wx.showLoading({ title: '资源下载中...', }) wx.downloadFile({ url: url, filePath: `${wx.env.USER_DATA_PATH}/${+ new Date}_` + type + ext, success: function (res) { console.log(res) const filePath = res.filePath var fileType = 'image'; if (type == '3') { fileType = 'video' } var source = { url: filePath, type: fileType } // 同时支持图片和视频预览 wx.previewMedia({ sources: [source], success: function(e) { console.log(e) }, fail: function (e) { console.log(e) } },true) }, fail: function (res) { console.log(res) }, complete: function (res) { wx.hideLoading() }, }) },
2021-03-03