你好,问题未解决的话,请提供完整的回包。
云开发调用订阅消息模板出错,报错TCB_PROVIDER_ERROR_4XX ?:errCode: -501001 resource system error | errMsg: TCB_PROVIDER_ERROR_4XX 代码如下 const cloud = require('wx-server-sdk') cloud.init({ // API 调用都保持和云函数当前所在环境一致 // env: cloud.DYNAMIC_CURRENT_ENV env:'zdszs-6gclcsva4df8e98d' }) exports.main = async (event, context) => { try { const result = await cloud.openapi.subscribeMessage.send({ touser: event.openid, //要发送用户的openid page: 'pages/index/index', //用户通过消息通知点击进入小程序的页面 lang: 'zh_CN', //进入小程序查看”的语言类型,支持zh_CN(简体中文)、en_US(英文)、zh_HK(繁体中文)、zh_TW(繁体中文),默认为zh_CN data: { //要发送的数据,这里需要注意的事项,我在下面说 // date3:{ // value:event.date // }, name1:{ value:event.name }, thing8:{ value:event.tishi }, phrase14:{ value:event.status }, // time22:{ // value:event.startdate // }, }, templateId: 'XXX', //已填写正确订阅消息模板ID miniprogramState: 'trial' //跳转小程序类型:developer为开发版;trial为体验版;formal为正式版;默认为正式版 }) return result } catch (err) { console.log(err) return err } }
2022-02-14你好,需要从公众号网页发起请求才可以。
有没有遇到过在云开发环境下调用微信公众号接口报错的?在微信小程序云开发环境下调用,结果报错 [info] 调用 本地 云函数 'login' 完成 (耗时 148ms) index.js:41 Error: errCode: -501001 resource system error | errMsg: officialAccount.material.getMaterialCount:fail wx api error: -605108 at callGeneralOpenAPI (D:\project\miniProgramWeChatCouble\miniProgram\cloudfunctions\login\node_modules\wx-server-sdk\index.js:426:19) cloud.openapi({ appid: '微信开发ID' }).officialAccount.material.batchGetMaterial({ type: 'news',offset:0,count:20 }).then(res => { console.log(res) res= res }).catch(err => { err = err console.log(err) })
2022-02-14你好,提示已经很明确了,这个是资源额度超限了,额度分配参考https://developers.weixin.qq.com/miniprogram/dev/wxcloud/billing/quota.html,升级配额可以直接在云开发控制台-设置-环境设置下操作。
云开发突然报错?[图片][图片] 突然出现这种情况
2022-02-11你好,微信云托管后续会支持微服务能力,敬请关注。
云托管Java版可以使用 SpringCloud 框架吗?开发文档提供的 Java 版本,是 SpringBoot 版本。现在有需求是使用微服务架构,也可以云托管吗?
2022-02-10你好,公众号的消息推送是需要在环境共享那里配置的: [图片] 文档说明:https://developers.weixin.qq.com/miniprogram/dev/wxcloud/basis/message-push.html
云开发控制台配置消息推送失败将小程序的环境共享给服务号后,通过公众号开发进入云开发控制台,配置消息推送时显示失败。 小程序APPID:wx90c7c57cf20b4b5f 错误:加载 “ideOverwriteCallbackConfig” 失败:Error: Base resp abnormal, {"base_resp":{"ret":-1,"errmsg":"system error","wx_req_id":"MfEAHPI2e-V_S2CA-1644463579"}} [图片] [图片]
2022-02-10你好,微信云托管目前暂不支持服务间的调用,服务间调用能力优化升级中,升级后性能更高,耗时更短,敬请期待; 环境共享已经在开发中,敬请期待。
微信云托管支持服务间调用吗?微信云托管是否支持服务间调用,是否支持环境共享?
2022-02-09你好,获取存储里面的下载地址使用这个接口https://developers.weixin.qq.com/miniprogram/dev/wxcloud/reference-sdk-api/storage/Cloud.getTempFileURL.html
wx.cloud.downloadFile从云存储下载文件文件名不一致的问题?用wx.cloud.downloadFile从云存储下载文件,但是下载并打开后都是一个临时文件的文件名,跟原来在云存储的文件名不一致,想让下载并打开的文件和原云存储的文件名保持一致,请各位老师赐教,感谢!! 附下载文件并打开的代码,仅用于打开云存储中的word文件 wx.cloud.downloadFile({ fileID: res.result.fileID, success: res => { // 返回临时文件路径 console.log('临时文件的路径是:',res.tempFilePath) wx.openDocument({ filePath: res.tempFilePath, showMenu: 'true', success: function (res) { console.log('打开文档成功') wx.hideLoading() } }) }, fail: console.error })
2022-02-09你好,问题未复现,建议自己核实文件实际大小。
cloud.uploadFile上传的图片都是9byte显示上传成功,回调也正常给出,但是查看云存储,所有图片都是9byte。 [图片][图片] const filePath=document.getElementById("upphoto").files[0] const instance = window.instance //上传图片 instance.uploadFile({ cloudPath: 'photo'+Date.now()+filePath.path.substring(filePath.path.lastIndexOf('.')), filePath: filePath, onUploadProgress: function (progressEvent) { console.log(progressEvent); var percentCompleted = Math.round((progressEvent.loaded * 100) / progressEvent.total); } }) .then((result) => { // 上传结果 console.log(result) });
2022-02-09你好,在云开发控制台输入的域名和“SSL证书-我的证书”那里的域名是否对上了?问题没有复现,可以正常查询到证书: [图片]
云开发静态网站-如何添加域名?在开发者工具-云开发中,想要添加域名,输入了公司的合法域名(已经是在小程序上关联授权),一直显示查询不到SSL证书。点击SSL证书控制台,跳转到腾讯云查看时,证书是正常签发的。请问这里要如何处理才可以添加成功? [图片][图片]
2022-02-09你好,麻烦提供下环境ID和导入的文件,可以私信提供。
将云数据库数据导入cms,array数据报异常?这是错误信息,[图片][图片]Minified React error #31; visit https://reactjs.org/docs/error-decoder.html?invariant=31&args[]=object%20with%20keys%20%7Bcode%2C%20content%7D&args[]= for the full message or use the non-minified dev environment for full errors and additional helpful warnings.
2022-02-09