Closed addlistener closed 1 year ago
你好,我这边用 examples 中的代码看了下,5.1.2 暂时没有复现以上问题哈。目前最新版是 5.1.3-alpha.17,下周会发正式版。
控制台相关配置可参考:Web Guard 文档
或者你可以提供一个最小复现 demo,我这边来跟进排查下。
应该是和我我的 publicConfig 有关。如果不给特定的 public config 可能不能复现
我也检查了一下,appId是存在的
所以按道理来说,这里报 缺少 appid & secret 是不准确的? https://github.com/Authing/Guard/blob/211cf14071/packages/guard-shim-react18/src/index.tsx#L155-L168
应该是和我我的 publicConfig 有关。如果不给特定的 public config 可能不能复现
我也检查了一下,appId是存在的
所以按道理来说,这里报 缺少 appid & secret 是不准确的? https://github.com/Authing/Guard/blob/211cf14071/packages/guard-shim-react18/src/index.tsx#L155-L168
使用 Guard 无需 secret,如果是标准 Web 应用,请在应用详情的 应用配置 -> 其他配置 -> 授权配置 中,请确保应用的 换取 token 身份验证方式 设置为了 none。具体参考这块:Web Guard 文档
方便的话,也可以加我微信:1047832475,发我 appId 看下。
有问题随时反馈,我来跟进。
{
"appId": "******",
"appHost": "https://*****.authing.cn",
"redirectUri": "http://localhost:3000/callback",
"tokenEndPointAuthMethod": "client_secret_post",
"introspectionEndPointAuthMethod": "client_secret_post"
}
跑完这个new AuthenticationClient(_authClientOptions)
就报错了
这是我在这一行的参数
{ "appId": "******", "appHost": "https://*****.authing.cn", "redirectUri": "http://localhost:3000/callback", "tokenEndPointAuthMethod": "client_secret_post", "introspectionEndPointAuthMethod": "client_secret_post" }
跑完这个
new AuthenticationClient(_authClientOptions)
就报错了
在控制台 -> 应用 -> 协议配置 -> 授权配置,将应用的 换取 token 身份验证方式 设置为 none,如下:
"@authing/guard-react18@5.1.2"
Use with next.js@13
虽然报错,但实际上是登录成功了的
复现代码(基本和样例代码一致 https://github.com/Authing/Guard/blob/master/examples/guard-react18/normal/src/pages/Callback.tsx )
报错信息
报错位置
但之后调用 useGuard 是能够拿到用户信息的,也就是实际上登录是成功了的