- 公众号网页云开发checkLogin和startLogin如何使用?
参考了:https://github.com/TCloudBase/WXH5-TodoList 调用 startLogin 与 checkLogin, 发现很多用户在授权流程一直循环授权无法进行下一步。 具体抓包看数据发现 checkLogin 首次返回 ret=0(此时未登录)所以调用startLogin流程,回来后url上新增了 access_token和refresh_token,再次调用checkLogin返回ret=85103(errCode不为0,且loggedIn又不为true,未登录成功)。然后又继续startLogin,如此循环。 【部分用户不会走到这个流程】,这是个什么情况?
2021-02-01 - 公众号网页云开发cloud.startLogin授权异常,如何解决?
cloud.startLogin({ provider: 'OfficialAccount', appid: Info.appid, scope: Info.scope, redirectUri: 'https://a.b.c', }) // 发现授权后跳转到了 `https://a.b.c/__wx__/oauth?redirect_uri=escape(https://a.b.c)&code=xxxxx&state=` 这样的一个地址。无法授权成功。 // 文档地址: https://developers.weixin.qq.com/miniprogram/dev/wxcloud/reference-sdk-api/web/Cloud.startLogin.html // 如何解决?
2021-01-20 - 如何解决Cloud API isn't enabled, please call wx.cloud?
在走完示例:https://developers.weixin.qq.com/miniprogram/dev/wxcloud/guide/web/minimal-example/html.html 的 doLogin 流程后 [图片] 在调用getJSSDKSignature时报错: [图片]
2020-10-16 - 如何解决Web SDK 初始化 报错:authStorage not found?
公众号云开发 使用 Web SDK: https://res.wx.qq.com/open/js/cloudbase/1.1.0/cloud.js 初始化时调用: const c = new cloud.Cloud({ appid: '', resourceAppid: '', resourceEnv: '' }) 出现报错: authStorage not found [图片]
2020-09-29