House
KKinde
•Created by House on 3/26/2025 in #💻┃support
Intercept Kinde Callback
I'm doing crazy stuff like:
export const GET = handleAuth({
async onSuccess(request: NextRequest, response: NextResponse) {
console.log('AUTH CALLBACK TRIGGERED!!!!');
try {
const url = new URL(request.url);
const pathname = url.pathname;
if (pathname.endsWith('/kinde_callback')) {
console.log('Intercept Kinde Callback:', request.url);
const kinde = getKindeServerSession();
const { getUser } = kinde;
const kindeUser = await getUser();
-----------
No wonder this does not work LOL
9 replies
KKinde
•Created by House on 3/26/2025 in #💻┃support
Intercept Kinde Callback
oooooooooo I see, yea that is where I'm getting stuck. I didn't know that so this is exactly what I want it to do. Essenetially the Login URI is a middle route after OAuth where you can do processing right. Before you render your page/app
9 replies
KKinde
•Created by House on 3/21/2025 in #💻┃support
Guys, can we please have better documentation for the Management JS?
Theoretically shouldnt be too hard, the API page atm is rendered by the spec I guess? But it only has the API version not the JS version, all you guys gotta do is add this in. Yea I guess may be tricky to generate the right functino names for JS vs. HTTP methods. Anyway, hopefully this helps others cuz I got stomped on this for quite a bit lmao.
3 replies
KKinde
•Created by House on 3/14/2025 in #💻┃support
State Not Found
Nvm looks like it's in the spec. 🤣 Re first question if you dont have a quick answer it's fine, Vercel provides 2 Preview URLs
7 replies
KKinde
•Created by House on 3/14/2025 in #💻┃support
State Not Found
Hey Andre - first thank you for responding!
I've actually seen those, my particular questino is that I don't think currently wildcards support two "-" in the middle.
Quick question, would you know if there are specific documentatino for the management JS library?
https://github.com/kinde-oss/management-api-js/
7 replies
KKinde
•Created by House on 3/14/2025 in #💻┃support
State Not Found
want to capture the "text-text"
7 replies
KKinde
•Created by House on 3/14/2025 in #💻┃support
State Not Found
I think I've found the issue,
prefix-text-text-suffix.vercel.app
How do we create a wildcard that fits this?
7 replies