- 微信热度收入结算平台网址是什么?
微信热度收入结算平台网址是什么?
2021-05-24 - 为什么个人也扣增值税和附加税?
不是企业才要吗
2021-05-23 - shareFileMessage报错 fail invalid path?
使用downloadfile接口下载文件,参数使用了filePath自定义路径 wx.env.USER_DATA_PATH + '/' + 【自定义名称】 + '.pdf', 返回的res.filePath用于shareFileMessage的filePath参数,结果shareFileMessage报错了,报的 fail invalid path,请问是为什么呢?
2021-05-08 - 云调用校验图片接口,文件大小为 54209,提示 data exceed max size ?
很奇怪 有些图片是可以上传的,有些上传不了,文件也没有超过限制大小呀 下面是调用代码 wx.getFileSystemManager().readFile({ filePath: tempFilePaths[0], success: buffer => { setTimeout(function () { wx.showLoading({ title: '请稍等', }) }, 350) wx.cloud.init({ env: '*****' }) wx.cloud.callFunction({ name: "imgseccheck", data: { value: buffer.data } }).then( imgRes => { wx.hideLoading() //console.log(imgRes) if (imgRes.result.errCode == 87014) { wx.showToast({ title: '图片含有违法违规内容', icon: 'none', duration: 1500 }) } else { //*** } } ).catch(error => { wx.showToast({ title: '未知错误', icon: 'none', duration: 1500 }) }) }, fail: err => { wx.showToast({ title: err, icon: "none", duration: 1500 }) } }) } 上传的文件大小是54209 [图片] 报错信息是"cloud.callFunction:fail Error: data exceed max size (callId: 1585894770302-0.7523036534558765) (trace: 14:19:30 start->14:19:31 system error (Error: data exceed max size), retry->14:19:33 system error (Error: data exceed max size), retry->14:19:35 system error (Error: data exceed max size), abort); at cloud.callFunction api; " [图片]
2020-04-03 - 关于微信同声传译插件的求解?
用微信同声传译插件 let plugin = requirePlugin("WechatSI") plugin.textToSpeech()正常 但是 let manager = plugin.getRecordRecognitionManager() manager.start() 没有同时使用live-pusher和流式录音接口。 以前可以用,现在会报错:{retcode: -30001, msg: "record manager record failed"} 求解
2021-04-23 - 微信小程序激励广告和视频广告收益如何?
微信小程序只有设一个激励广告和一个视频广告收益如何?
2021-04-21 - 小程序怎么怎么在前端插入广告?
我的小程序流量主开通了,源码没有后端,怎么在前端插入广告
2021-04-20 - 已经注销小程序,但是依然占位
[图片] 您好,我注销了,还是占小程序位置,无法申请新的。希望您帮我查看下。谢谢。
2021-04-19 - 用 URL Scheme 生成链接服务器获取不到query参数
用 URL Scheme 生成链接,path 为 pages/index, query为 www,生成后,分别用安卓手机和苹果手机打开。 在微信回调的地方看微信服务器发过来的参数: 苹果手机打开 PagePath 为 pages/index?www;安卓手机打开 PagePath 为 pages/index,没有 query 中的 www。
2021-04-19 - 这样调用其他环境云函数不对吗?
调用另一个云环境的云函数,下面的代码: const cloud = require('wx-server-sdk') const tcb=require("tcb-admin-node") var admin=tcb.init({ secretId:"AK*****************************gX", secretKey:"f*****************************NC", env: 'e******z', }) cloud.init() exports.main = async (event, context) => { let reuslt= await admin.callFunction({ name:"mathAdd", data:{ } }) console.log("111",reuslt) } 显示: 111 {code: "INVALID_ENV", message: "Environment not found"} 请教问题出在哪里?
2021-04-18