- 为什么审核的时候总是授权失败?
我这边测试授权一直都正常 微信代码审核总是因为授权失败驳回? 我真的服了请给我一个解释???? 另外为什么名称违规,在审核通过否,再次提交代码提示违规???标准不统一吗?
2021-10-28 - 确保名称整体移除,再提交代码审核?
[图片] 这个是什么错误啊,是小程序的名称不符合规范让我改名字吗?不懂要让我改啥?
2021-10-23 - 共享环境发送订阅消息?
A共享了B的环境,A调用B的云函数给A的用户发送订阅消息失败?为什么,检查了openid是A用户,这种不支持吗? 返回结果 {"errCode":40003,"errMsg":"openapi.subscribeMessage.send:fail invalid openid rid: 6144982f-1f9ce106-2c4b2f17"} 日志 START num: 5 { "errCode": 40003, "errMsg": "openapi.subscribeMessage.send:fail invalid openid rid: 6144982f-1f9ce106-2c4b2f17" } REPORT RequestId:4063c015-17bb-11ec-9173-4a2fb74dc491 Duration:263ms Memory:256MB MemUsage:72.058594MB END
2021-09-17 - 珊瑚内容审核,总是报系统错误?
返回结果 {"errCode":-604102,"errMsg":"system error: error code: -604102"} 日志 START 接收参数为: { "imagefileid": [ "cloud://cityinfo-0g5go4qk6c102883.6369-cityinfo-0g5go4qk6c102883-1303201118/topic/2021-9/1631881104046.jpg" ], "msg": "", "userInfo": { "appId": "wx6236fb3684e2f1a6", "openId": "oa-_d5TEKbAULBuSoOrAqzbIfxew" } } 第[ 0 ]个图片fileid为: cloud://cityinfo-0g5go4qk6c102883.6369-cityinfo-0g5go4qk6c102883-1303201118/topic/2021-9/1631881104046.jpg REPORT RequestId:5ba02c2a-17b1-11ec-a3a7-fa50df1649e0 Duration:3456ms Memory:2048MB MemUsage:101.871094MB END
2021-09-17 - 小程序链接跳转有望取消?工信部禁止链接屏蔽
工信部禁止链接屏蔽,小程序里的链接跳转是不是也要解除限制了?一起来讨论一下
2021-09-14 - 关于腾讯视频插件无法设置高度?
这样设置为什么会报错? <txv-video wx:if="{{video.vid}}" width="{{100%}}" height="{{'auto'}}" vid="{{video.vid}}" playerid="{{video.vid}}" autoplay="{{true}}"> </txv-video> [ WXML 文件编译错误] ./pages/videodetail/index.wxml Bad attr `width` with message 24 | <txv-video 25 | wx:if="{{video.vid}}" > 26 | width="{{100%}}" | ^ 27 | height="{{'auto'}}" 28 | vid="{{video.vid}}" 29 | playerid="{{video.vid}}" at files://miniprogram/pages/videodetail/index.wxml#26(env: macOS,mp,1.05.2105242; lib: 2.14.1)
2021-08-17 - 关于wx.uploadfile失败问题?
我贴下两用方式的代码,用node方式就可以上传,微信uploadfile就不可以,请老师帮看看,谢谢 uploadBusiMaterial() { let that = this console.log(that.data.files[0]) wx.uploadFile({ filePath: that.data.files[0], header: { 'Content-Type': 'multipart/form-data' }, method: 'POST', name: 'name', url: 'http://192.168.3.41:9000/proxy/upload', formData: { 'uid': '3336', 'type': 'doc', 'folder_name': '个人网盘' }, success(res) { console.log(res) } }) }, Node方式 let form = new FormData() form.append('file', fs.createReadStream(path))//'file'是服务器接受的key form.append('uid','3336') form.append('type','doc') form.append('folder_name', '个人网盘') // let boundaryKey = '----' + new Date().getTime() // 用于标识请求数据段 let options = { host: '192.199.32.106', // 远端服务器域名 port: 44, // 远端服务器端口号 method: 'POST', path: '/WebDiskServerDemo/upload', // 上传服务路径 headers: form.getHeaders() } console.log(form.getHeaders()) let req = http.request(options, function(res){ res.setEncoding('utf8') res.on('data', function(chunk) { console.log('body: ' + chunk) }) res.on('end', function() { console.log('res end.') }) }) form.pipe(req)
2021-05-11 - 小程序名称审核请帮忙驳回,谢谢?
小程序名称不需要修改名称了,麻烦帮忙驳回审核,谢谢!
2020-10-09 - 关于地域名审核区别对待问题,请问为何该小程序可以使用地域名?
请问为何该小程序可以使用地域名?审核也搞区别对待吗?请解答 帐号原始ID gh_9946805f937d AppID wxcb12099af1789685
2020-10-09 - 小程序云函数可以托管node项目吗?
请问腾讯云中的云函数可以托管一个node项目, 小程序中的云函数是否支持?
2020-09-19