看小程序用户同时在线体量和后台架构
小程序开发对配置服务器有要求吗?小程序开发对配置服务器有要求吗
2023-11-17基础库
open-type="chooseAvatar" 没有真机测试没有弹出头像,请问怎么解决?[图片][图片] open-type="chooseAvatar" 没有真机测试没有弹出头像,请问怎么解决?
2023-11-17通知频率为15s/15s/30s/3m/10m/20m/30m/30m/30m/60m/3h/3h/3h/6h/6h - 总计 24h4m),但微信不保证通知最终一定能成功。
微信回调微信回调失败后,多长时间再次回调
2023-11-17视频录的太短,又没点击记录,看不出来啥
个别用户使用小程序体验版显示加载中,请问是什么问题呢?首先在微信开发者工具和真机调试上都没有遇到这个问题,但在体验版上,个别用户碰到了登录成功后跳转至首页,没有做任何操作,却像是跳转页面,一直显示加载中的图标,重新进入小程序后又好了,无法复现这个问题,又是个别用户偶尔出现该问题,实在不知道是什么原因导致的,请求大佬解答~~~ 我写了一个loadingPage页面,在首次注册成功后跳转到这个页面,再根据状态判断需要跳转的页面,以下是我的代码 //注册授权页 userApi.getWxPhone(self.wxAccessToken, e.detail.code).then(res => { if (res.code === 200) { const phone = res.data.phone_info.phoneNumber self.$u.vuex('vuex_user_phone', phone) userApi.addUser(phone, self.vuex_user_openid).then(res => { if (res.code === 200) { self.$u.vuex('vuex_token', res.data.token) uni.navigateTo({ url: '/pages/loadingPage/loadingPage', }) } }) } }) //loadingPage页面 export default { onLoad(options) { uni.showLoading({ title: '加载中...' }); setTimeout(() => { uni.hideLoading() this.redirect() }, 2000); }, computed: { ...mapState(['vuex_token', 'vuex_user_phone', 'vuex_doctorId']) }, methods: { redirect() { //1. 无token const token = this.vuex_token if (!token || token === '') { uni.navigateTo({ url: '/pages/auth/auth' }) } else { userApi.getRegisterPatientList().then(res => { const data = res.data if (data === [] || data === null || data.length === 0) { //没有患者存在 uni.navigateTo({ url: '/pages/login/login' }) } else { const passedPatientId = data.find(e => { //如果患者绑定了医生且通过审核 return e.status === 1 })?.patientId const waitingPatientId = data.find(e => { //患者提交了审核但医生还未进行操作 return e.status === 0 })?.patientId const unbindDotorPatientId = data.find(e => { //患者提交的审核被拒绝 return e.status === null || e.status === 2 })?.patientId if (passedPatientId) { uni.switchTab({ url: '/pages/home/home' }) } else if (waitingPatientId) { // 如果已经有患者,患者等待审核中,直接取第一个患者跳转到选择医生界面 uni.navigateTo({ url: '/pages/chooseDoctorTeam/chooseDoctorTeam?patientId=' + waitingPatientId }) } else { //如果已经有患者,但患者没有绑定医生,跳转到选择医生界面(此情况存在于首次注册添加患者后未绑定医生再次进入) uni.navigateTo({ url: '/pages/chooseDoctorTeam/chooseDoctorTeam?patientId=' + unbindDotorPatientId }) } } }) } }, } } b站上传了出现该问题的视频,链接(https://www.bilibili.com/video/BV14u4y1b7oJ/?spm_id_from=333.999.0.0&vd_source=1a88a795e6ce23a3ad2e210b01058246)
2023-11-15getStableAccessToken获取机制有问题,你貌似每次需要都是重新获取的 https://developers.weixin.qq.com/miniprogram/dev/OpenApiDoc/mp-access-token/getStableAccessToken.html 该接口调用频率限制为 1万次 每分钟,每天限制调用 50万 次;
wx.login接口调用数量未达到限额却被限,各位大神帮忙看下是什么问题导致的吗?AppID(小程序ID) wx115e794a709c52ee , 原始ID gh_1f691b9640cb , wx.login接口调用数量未达到限额却被限用导致很多用户无法登录,各位大神帮忙看下是什么问题导致的受限吗, (1)问题描述:微信获取授权接口限制是2倍昨日PV。比如我们昨天的PV在1.2万,理论上应该可以获取 2.4万额度。但是观看后台统计数据,每天获取只有不到2K就报以下错误了,求各位大神及管理员帮忙看下是什么原因导致的受限 (2)报错信息如下: { "errcode":45009, "errmsg":"reach max api daily quota limit, could get access_token by getStableAccessToken, more details at https:\/\/mmbizurl.cn\/s\/JtxxFh33r rid: 655361ee-217491a5-56d30827" } (3)调用数据如下: [图片]
2023-11-15微信支付下单呀
小程序发货信息管理服务的api接口如何调试?开发阶段,在调试快递物流发货的时候,我们如何调试呢?用假的虚拟的物流单吗?
2023-11-15不能
微信公众号自定义菜单可以修改字体颜色么?微信公众号自定义菜单可以修改字体颜色么
2023-11-15[图片]没问题
网页授权redirect_uri 无法打开页面,不支持打开,实际连接在微信浏览器能正常打开,为啥?[图片]http://www.bctechonline.com/geturl.html?code=061zHw1w3OHxI13vTS0w3TU0tf4zHw1-&state=sacswebauth_Wfy7jHdbU12X4ADpchLjYrDuNstMLLz_172.16.0.191_52%3A54%3A00%3A5e%3Aa2%3Ac3[图片]
2023-11-13还有个查询API呀 https://developers.weixin.qq.com/miniprogram/dev/platform-capabilities/business-capabilities/order-shipping/order-shipping.html#%E4%B8%89%E3%80%81%E6%9F%A5%E8%AF%A2%E8%AE%A2%E5%8D%95%E5%8F%91%E8%B4%A7%E7%8A%B6%E6%80%81
小程序接入发货信息管理服务API接口后,如何验证呢?小程序接入发货信息管理服务API接口后,有什么方法可以验证吗?
2023-11-13看是否有违规,
申请地理位置接口无权限?https://developers.weixin.qq.com/doc/oplatform/openApi/OpenApiDoc/miniprogram-management/privacy-management/setPrivacySetting.html 小程序所有的地理位置接口都显示无权限,麻烦问下是什么情况 小程序appId:wx1c1ef60a9dd37031 {"errcode":0,"errmsg":"ok","interface_list":[{"api_name":"wx.startLocationUpdate","api_ch_name":"wx.startLocationUpdate","api_desc":"开启小程序进入前台时接收位置消息","status":2,"fail_reason":"<a target='_blank' href=\"https:\/\/developers.weixin.qq.com\/community\/develop\/doc\/00062a6d514c88baacdf52e8a56009\">隐私接口权限被回收<\/a>","api_link":"https:\/\/developers.weixin.qq.com\/miniprogram\/dev\/api\/location\/wx.startLocationUpdate.html","group_name":"地理位置"},{"api_name":"wx.onLocationChange","api_ch_name":"wx.onLocationChange","api_desc":"监听实时地理位置变化事件","status":2,"fail_reason":"<a target='_blank' href=\"https:\/\/developers.weixin.qq.com\/community\/develop\/doc\/00062a6d514c88baacdf52e8a56009\">隐私接口权限被回收<\/a>","api_link":"https:\/\/developers.weixin.qq.com\/miniprogram\/dev\/api\/location\/wx.onLocationChange.html","group_name":"地理位置"},{"api_name":"wx.getLocation","api_ch_name":"wx.getLocation","api_desc":"获取当前的地理位置、速度","status":2,"fail_reason":"<a target='_blank' href=\"https:\/\/developers.weixin.qq.com\/community\/develop\/doc\/00062a6d514c88baacdf52e8a56009\">隐私接口权限被回收<\/a>","api_link":"https:\/\/developers.weixin.qq.com\/miniprogram\/dev\/api\/location\/wx.getLocation.html ","group_name":"地理位置"},{"api_name":"wx.getFuzzyLocation","api_ch_name":"wx.getFuzzyLocation","api_desc":"获取当前的模糊地理位置","status":1,"api_link":"https:\/\/developers.weixin.qq.com\/miniprogram\/dev\/api\/location\/wx.getFuzzyLocation.html","group_name":"地理位置"},{"api_name":"wx.choosePoi","api_ch_name":"wx.choosePoi","api_desc":"打开 POI 列表选择位置","status":2,"fail_reason":"<a target='_blank' href=\"https:\/\/developers.weixin.qq.com\/community\/develop\/doc\/00062a6d514c88baacdf52e8a56009\">隐私接口权限被回收<\/a>","api_link":"https:\/\/developers.weixin.qq.com\/miniprogram\/dev\/api\/location\/wx.choosePoi.html","group_name":"地理位置"},{"api_name":"wx.startLocationUpdateBackground","api_ch_name":"wx.startLocationUpdateBackground","api_desc":"开启小程序进入前后台时均接收位置消息","status":2,"fail_reason":"<a target='_blank' href=\"https:\/\/developers.weixin.qq.com\/community\/develop\/doc\/00062a6d514c88baacdf52e8a56009\">隐私接口权限被回收<\/a>","api_link":"https:\/\/developers.weixin.qq.com\/miniprogram\/dev\/api\/location\/wx.startLocationUpdateBackground.html","group_name":"地理位置"},{"api_name":"wx.chooseLocation","api_ch_name":"wx.chooseLocation","api_desc":"打开地图选择位置","status":2,"fail_reason":"<a target='_blank' href=\"https:\/\/developers.weixin.qq.com\/community\/develop\/doc\/00062a6d514c88baacdf52e8a56009\">隐私接口权限被回收<\/a>","api_link":"https:\/\/developers.weixin.qq.com\/miniprogram\/dev\/api\/location\/wx.chooseLocation.html","group_name":"地理位置"},{"api_name":"wx.chooseAddress","api_ch_name":"wx.chooseAddress","api_desc":"获取用户收货地址","status":2,"fail_reason":"<a target='_blank' href=\"https:\/\/developers.weixin.qq.com\/community\/develop\/doc\/00062a6d514c88baacdf52e8a56009\">隐私接口权限被回收<\/a>","api_link":"https:\/\/developers.weixin.qq.com\/miniprogram\/dev\/api\/open-api\/address\/wx.chooseAddress.html","group_name":"地理位置"}]}
2023-11-13