web guard.startWithRedirect()跳转失败

问题:
未登录状态下,本地访问localhost:8000, 点击button 调用 guard.startWithRedirect(),
期望:跳到后台配置的登录页面,

实际:直接跳回了 localhost:8000,没有出现login页面,查不到登录状态,

原因:
发现只调用了一个url
https://pure-fda-staging.authing.cn/oidc/auth?nonce=xx&state=xx&scope=openid+profile+email+phone+address&client_id=xx&redirect_uri=http%3A%2F%2Flocalhost%3A8000&response_type=code&response_mode=query&code_challenge=xx&code_challenge_method=S256

没有调用 https://pure-fda-staging.authing.cn/login?xxx,
加粗示例
不清楚为什么startWithRedirect没有访问https://pure-fda-staging.authing.cn/login?xxx

你好,打开控制台,看下是否有报错 log,把报错信息发我下。

或者 Fork Guard 仓库,修改官方 examples,提供一个 PR 给我,复现问题后方便排查。