Kinde

K

Kinde

Join the community to ask questions about Kinde and get answers from other members.

Join

How to get Kinde user id after a User creates their account?

If I want to create a record in my own database once a user creates an account using Kinde, how do I approach this? I want this to happen after a user registers an account. Should I use the Management API? And if so, will I have to build my own Sign Up UI, instead of being able to use the UI that Kinde provides after clicking <RegisterLink />? Thanks...

Can i rotate JWKS?

I couldn't find the hint about it. I want to make sure that there is no need to implement JWKS Rotation in the project I am working on....

Kinde Auth Register 500

Me and my team are trying to setup Kinde on our site but we get a code 500 everytime we try create an Admin Account, what could be causing this?
No description

Kinde Auth Register 404

In production I always get this error. It seems sometimes like the users try to click multiple times. What can cause this error? When does the callback get called? After they actually tried to signup or before? I also have a custom auth callback api route can cause this anything?
No description

Branding

Hi I am not able to upload a logo on the branding page, also when I change the design color for the background it does not update when I launch in on expo app. The image is bellow 1 mb.
No description

Account connection support

Auth0 providing account connection that able to use multi-way to login same account, checked API and various docs, seems Kinde didn't implements this feature yet?

Unexpected Character Error with KindeSDK in Expo/React Native

Hi there, I'm currently working on an Expo React Native project where I'm using the KindeSDK for authentication. I've run into an issue that I'm having trouble resolving. Here's the relevant part of my code:...

Quick way to grab valid JWT

I'm trying to test my backend with express.js and calling it through postman. Is there an easy way to grab a valid JWT for my login so i can pass it in the headers?

NextJs Redirect URL issue

I updated post_login_redirect_url variable to a new endpoint. However, kinde_callback redirects the user to an old endpoint.

Authentication issue after login. Node Express SDK.

Hi, I am trying to get integration with my express/node server up and running, I can login, and get redirected, but using the quick start code from the experess SDK app.get("/", (req, res) => {     if (req.session && req.session.kindeAccessToken) {         res.send("You are authenticated!");...

kinde-flutter configuration problems

Hello everyone! I'm very happy to get started with Kinde and Flutter. I recently started studying Flutter and discovered Kinde to get rid of the headache of "maintenance" of users. I wanted to ask if there is any guide or examples for Flutter? It has been difficult for me to understand and integrate. Also, I can't find a way to configure the callback correctly. (the Kinde page appears but with an error saying 'invalid callback url'). I use flutter_dotenv and go_router....

Kinde with React Js

hey there i was wondering if it possible to handle authentication and authorization on react JS front-end and using express. son my back end will be storing the credentials in my database not on kinde cloud

kinde-flutter-sdk invalid session on every login attempt.

Hello! I have been trying to get the kinde flutter sdk to work, however for some reason after successfully logging in with the following code: ``` try { final sdk = KindeFlutterSDK.instance; ...

NextJS App Router v2 getAccessToken() and getToken()

Hello again! Loving Kinde (and can't wait for custom favicons....), but I've ran into a little bit of a desync between either my implementation or the kinde documentation. I have a backend that I want to send the user's JWT to. I figured I would use the serverside method getAccessToken(), but it 1) returns null on a logged in user (profile pic, name, email from getUser() went fine, and 2) even if I got the KindeAccessToken there are no methods to convert it to a JWT (althought the documentation suggests getAccessToken() -> Promise<string>....

Change my instance region

Due to an onboarding error my Kinde instance is in Australia, and that adds significant ping. Is it possible to change my instance server? Quick glance at the settings panel wasn't clear to me if it is possible.

Resolving auth in back-end (.NET) with token retrieved from front-end (React)

Hello, i have finished a setup in react, but i need to use the token to authenticate and authorize the user in the back-end. AFAIK there are no documents on Kinde elaborating on this issue, would anyone be able to support? In .NET authentication is added: ```cs...

What's the protocol for transfering ownership of the account?

I would like to transfer ownership of the account that runs on production for some time to a client as a part of handoff process. I couldn't find any obvious way in the dashboard or in docs. Cheers...

BrowserClient.getUser returns Promise<string>

Hi, I'm using kinde-typescript-sdk 2.3.2. It was really easy to integrate Kinde, registration and login are working, but when I call browserclient.getUser it seems to return a Promise<string> instead of Promise<UserType>. I kind of hacked around it but it's not pretty 🙂 browserClient was created by createKindeBrowserClient()
No description

Token being sent

Im using react trying to get a token to send to my express backend...getToken is not working... any ideas? (I am willing to pay someone to make a video showing a todo application between react/express/mongo and incoperating Kinde, lmk if anyone would be interested)...
No description

Allow user to delete their account (nextjs)

Good afternoon everyone! I am using Kinde in my nextjs app to handle user authentication; I am wondering if there is a way for their account to be deleted on Kinde when they click on the "delete my account" button in my app? The desired behaviour is what when they click on the button, their account is deleted and then they are redirected to the landing page. The login link and register link are so simple to integrate so i was wondering if there is someething similar for allowing a user to delete...