House
KKinde
•Created by House on 3/26/2025 in #💻┃support
Intercept Kinde Callback
Hello, I'm wondering what is the best pattern to intercept Kinde's callback URL and do some work before letting the redirect through?
A current use case is that I have email invite setup where if user A signs up to Org X, I need to double check if user A was invited to Org X after they've signed up on Kinde via a Register Link. I've tried to add an onSuccess functino within handleAuth but I don't think it's working because console.log doesn't even show up in npm run dev.
Would appreciate some suggestions, thank you!
9 replies
KKinde
•Created by House on 3/21/2025 in #💻┃support
Guys, can we please have better documentation for the Management JS?

3 replies
KKinde
•Created by House on 3/14/2025 in #💻┃support
State Not Found
Hey folks, I'm getting this error here on Vercel Preview deployments. Prod seems to be fine. Wondering if anyone can help.
{"error":"Error: State not found.\nTo resolve this error please visit our docs https://docs.kinde.com/developer-tools/sdks/backend/nextjs-sdk/#state-not-found-errorAuthentication flow: Received: 5bb2f205dff994476b08d5fa2982 | Expected: State not found"}
I do have the the following on my next.config.mjs:
/** @type {import('next').NextConfig} */
const nextConfig = {
env: {
KINDE_SITE_URL:
process.env.KINDE_SITE_URL ??
https://${process.env.VERCEL_URL}
,
KINDE_POST_LOGOUT_REDIRECT_URL:
process.env.KINDE_POST_LOGOUT_REDIRECT_URL ??
https://${process.env.VERCEL_URL}
,
KINDE_POST_LOGIN_REDIRECT_URL:
process.env.KINDE_POST_LOGIN_REDIRECT_URL ??
https://${process.env.VERCEL_URL}/experiments
,
},
};
export default nextConfig;7 replies