Is there a way that I can track a convex
Is there a way that I can track a convex fatal error?
[CONVEX FATAL ERROR] Auth provider discovery of https://79ad67f7cae0.ngrok.app/api/ failed
2 Replies
Not a super easy way to surface a better error message, but I'd recommend stepping through the OIDC discovery flow manually -- I'd curl that URL +
.well-known/openid-configuration
and check that it works + the jwks_uri
+ authorization_endpoint
look right
And then would also curl the jwks_uri
and check that it looks like what you'd expect. One of my apps using Convex Auth has something that starts with {"keys":[{"use":"sig","kty":"RSA","n":"vP
Hello sshader, I think I forgot to put "/" after api in the domain, and now it's working. Thank you for the support 🙏