OIDC Provider questions
Hi everyone!
Trying to do a POC on the oidc provider feature.
I have a next.js application cosplaying the auth server. Relevant code excerpts:
I also have an API route
So I start the oidc flow by pasting the following url to the browser
I get redirected, correctly, to the sign-in page
But on the login page after
-Continue in a following comment-
Trying to do a POC on the oidc provider feature.
I have a next.js application cosplaying the auth server. Relevant code excerpts:
I also have an API route
/api/oidc/callback. Previously I registered an OIDC client withSo I start the oidc flow by pasting the following url to the browser
I get redirected, correctly, to the sign-in page
But on the login page after
authClient.signIn.email() I don't get redirected but I get HTTP200 with the user payload.-Continue in a following comment-