- system error rid: 666c8a35-3fdb7f5d-0dd0afe6是什么原因?
调用: https://api.weixin.qq.com/cgi-bin/express/intracity/createstore?access_token={ACCESS_TOKEN} 接口 创建门店时 接口返回: { "errcode": -1, "errmsg": "system error rid: 666c8a35-3fdb7f5d-0dd0afe6" } 当我不加密,明文发送,但有签名,此时返回: { "errcode": 40097, "errmsg": "invalid args rid: 666db5c6-4efd7fe8-462a353a" } 这能代表签名过了吗? 商家需要通过数字签名来保证求的真实性和数据的完整性,签名和加密的参考,微信服务端api签名指南。使用加密和签名之前请确认小程序 已经配置了签名秘钥和加密秘钥,配置路径:小程序管理后台->开发管理->开发设置->API安全 注意:小程序管理后台配置了签名秘钥和加密用的对称秘钥后,如果商家确定不需要全局使用接口加密和签名,可以不开启api加密,如下图为没有开启加密的状态!!! 根据上面的文档,我又关闭了,全局接口加密和签名,然后明文发送,结果返回: { "errcode": 934011, "errmsg": "signature is needed, please refer document for help [https://developers.weixin.qq.com/miniprogram/dev/OpenApiDoc/getting_started/api_signature.html] rid: 666dba68-11ff5513-6505a105" } 文档有问题,还是我理解有问题
06-15 - 同一个小程序页面同一台手机,为什么有个别用户的账号没有分享到朋友圈和收藏功能呢?
https://developers.weixin.qq.com/miniprogram/dev/framework/open-ability/share-timeline.html
2021-10-01 - bug
更新不了,只能卸载掉原来的版本,重新安装 https://developers.weixin.qq.com/miniprogram/dev/devtools/stable.html
2021-07-07 - 根据教程文档操作设置darkmode和theme,发现编译不通过,找不到其他相关文档解决此类问题
https://developers.weixin.qq.com/miniprogram/dev/framework/ability/darkmode.html app.json "darkmode": true, "themeLocation":"./theme.json", "window": { "navigationBarTitleText": "x'x'x", "enablePullDownRefresh": true, "navigationBarBackgroundColor": "@navBgColor", "navigationBarTextStyle": "@navTxtStyle", "backgroundColor": "@bgColor", "backgroundTextStyle": "@bgTxtStyle", "backgroundColorTop": "@bgColorTop", "backgroundColorBottom": "@bgColorBottom" } theme.json { "light": { "navBgColor": "#f6f6f6", "navTxtStyle": "black", "bgColor": "#ffffff", "bgTxtStyle": "light", "bgColorTop": "#eeeeee", "bgColorBottom": "#efefef", "tabFontColor": "#000000", "tabSelectedColor": "#3cc51f", "tabBgColor": "#ffffff", "tabBorderStyle": "black" }, "dark": { "navBgColor": "#191919", "navTxtStyle": "white", "bgColor": "#1f1f1f", "bgTxtStyle": "dark", "bgColorTop": "#191919", "bgColorBottom": "#1f1f1f", "tabFontColor": "#ffffff", "tabSelectedColor": "#51a937", "tabBgColor": "#191919", "tabBorderStyle": "white" } } 结果编译不通过 错误如下: VM36:1 appJSON["window"]["navigationBarTextStyle"] 字段需为 black 或 white
2020-05-17