KindeProvider Usage
I would like to know what is the use of using the KindeProvider component, since I just found out that it exists and my app works perfectly and maintains the user session without using the component.
Authentication Issue on Vercel Deployment
Hi Kinde team,
I'm having trouble with Kinde auth in my Vite + React + TS app when deployed to Vercel. Everything works fine on my local env, but the auth flow breaks after deploying.
Problem Summary:...
NextJS PWA app gets stuck at this screen
I have a project which I've converted to a PWA. We use Kinde for the auth of course. However, sometimes, when I open the app, it gets stuck at this screen. There is no button I can click and nothing I can do. It is stuck indefinitely. It feels like a auth page cause that is the only page that doesn't have the look and feel of our app.
From the logs I can see it opens up the base file "/". And that page uses this code:
const { isAuthenticated } = getKindeServerSession();
if (await isAuthenticated()) {...

JWT guide needed
understand this scenario, my app requires user to fill up extra form for other details after authentication, i want that user should be able to use the platform's some routes if the user has completed the form fillup so i am using nextjs for frontend and nodejs express for backend i am thinking of using a flag like isProfileComplete that i will get from jwt token and then create a middleware to protect the routes on basis of the flag in token, how to add this in jwt then fetch it in backend and...
useKindeBrowserClient isAuthenticated
In my nextjs app, I'm using Kinde Auth:
`
import { useKindeBrowserClient } from "@kinde-oss/kinde-auth-nextjs";
...
Extra fields using Kinde
I would like to add to my form using Kinde an extra field that would be a selector of options that the user can select from and then I receive it in the webhook from when they register. How do I do this?
Personalized page using email codes
How do I make a custom page with my own UI using Nextjs but being able to use the method of sending code by email?
Refresh claims approach
Hi, I'm trying to figure out how to refresh claims / user details with Kinde. There are few scenarios I'm trying to solve this for:
- As part of registration activities a user might be allocated to an organisation & role via the M2M API. Their original access token doesn't have these claims and they end up with forbidden access. I understand the why as the Nuxt server is using the cached values.
- Users might have their roles changes within an admin section using the M2M API.
...
Transfer ownership to team member
Hi, I can't see a way to transfer the Owner role from me to a team member. On this page

Delegated User Management
Is there a way, within the /admin area, to delegate user management within a given environment, but not allow them to administer the rest of the "tenant"? For enterprise-based scaling, this is critical.
NextJS API endpoint - verify token
Hello,
First off, im currently studying front-end development, take this as a warning as this might be a "noob" question!
Im currently setting up my API for my NextJs application, using kinde as authentication.
As ive developed this i have used NextJS server-actions to check authentication for user and checked the role....
The React SDK is not available, unable to automatically refresh the token successfully.
I am building a project using the Kinde React SDK, and I found that after logging in, the Kinde SDK keeps throwing errors. I saw similar issues on Reddit, and it seems this problem has been persistent.
https://www.reddit.com/r/nextjs/comments/1as2uxs/kinde_auth_client_side_authentication_not_showing/
Special note: I used Kinde for development 2 years ago, and there were no issues at all compared to now....

Password for my Kinde Account?
Hey everyone,
just signed up for testing Kinde, but it seems i am not able to protect my Kinde Account with a Password - Everytime i login i get a code via E-Mail.
Can someone tell me where i can set an account password?...
ext_provider missing
I'm looking to get the authentication method the user utilized while signing in. I used to be able to get this through the ext_provider claim. I'm not seeing that being returned anymore.
My code essentially looks at this value, indentifies if the user utilized Google or Facebook (my two allowed sign in methods other than email / password). If this isn't available, we assume the user utilized email / password.
The problem is this is no longer coming across as a claim for whatever reason. This means that all of my users appear as though they utilized email / password to sign in, which isn't correct....
Any way to continually test service without waiting for email code?
I am using kinde with expressjs and having trouble with routes. Whilst testing I have to keep requesting email auth code, is there a way I can set single code, or disable the need to confirm?
Feature Billing / payment
Hi kinde team, do you know if there’s a planned release date for the billing/ payment user ? Also, do you know which pricing package it will be included in ?
Retrieve user data from access token
I have access token which is generated by react SDK.
My backend is implemented in python. I'm planning to use jwt based authentication but I couldn't find way to retrieve user data from access token which is generated by react SDK.
Any way to retrieve user data from access token?
Also I want to know a way to retrieve access token for connected apps under my situation....
How users can update their own profile?
hey, I want to develop user profile page with nextjs application where user can update their basic details, change passwords, link or unlink social accounts, or delete their account... but I am not able to find any docs which enables user to update their profile data other than the dashboard or m2m authenticated management api (which I don't think a good idea to update the user's data from a frontend application). Is there any way using which the frontend application use the users access token t...