Kinde

K

Kinde

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

Join

Generating Access Tokens

I'm using the Kinde Management API. I've run into an issue where the Bearer Token (access token) I've generated in Postman expires after 24 hours. I understand that I can solve this by generating a new one for each API request that I want to perform, but I cannot figure out how to do so. The documentation (https://kinde.com/docs/build/get-access-token-for-connecting-securely-to-kindes-api/) for generating one through Postman is really thorough, but the NodeJS one isn't that much. Could you guys expand on the existing Node.js fetch example documentation? What should I do with the response in order to get the access token?...
No description

Type definations for nofe express alp

Hi kinde support team i am getting this error is there any fix or work arround? 2. Is custom claim is supported or not? Like what if we want to add a extra field in the access_token? 3. Also in frontend i want users "username" to be filed in the signup page how can i do that???...
No description

Unable to Complete Login Process - Authentication Error

I'm reaching out for assistance with an issue I'm encountering during the login process. I've successfully navigated through the authentication steps and reached the point where I'm verified with a confirmation code. However, I'm unable to complete the login process due to an error that appears post-redirect. The error message displayed is: "ERROR: Something wrong when trying to authenticate. Reason: cancel" This issue prevents me from accessing my account, and it occurs right after the verification step. It seems like the authentication process gets cancelled unexpectedly. Could you please provide guidance or a solution to resolve this issue?...
No description

Audit log missing details

I'm seeing some audit log entries with missing details. Is this a bug?
No description

Automatically set token in header

From my understanding in "normal" .net authentication flow the back-end authenticates user based on the cookies whereas with kinde i have to: 1. GetToken() 2. Set token in header Authorization: Bearer token Am i correct or am i using a bad authentication flow?...
No description

HTTP 429 Too Many Requests

My application makes some calls to the Kinde API from our backend. On Tuesday at 1:24pm (UTC) we saw a spike of HTTP 429 responses from the Kinde API. Can you help me understand the rate limits which apply to use of the Kinde API?

Error ID_REQUIRED when calling POST /v1/user

I am trying to use the Kinde Management API to create a new user. I have already configured everything properly. When calling GET on /v1/users it responds with 200 and shows me a list of my users. ...
No description

Difference between M2M API and Back-end API

I'm following the Kinde docs (https://kinde.com/api/docs/#kinde-management-api) to use the Management API, and the first step is to add a machine to machine application for API access. I'm a bit confused: what is the difference between using using a m2m application for API access vs the existing one (Back-end web) I had already created for my NextJS app? Since it also provides me with the domain, client ID/secret....

Malformed auth_url

Hey need some assistance here, I've been stuck here for days. I've deployed a rails application on webapp.io and everything runs smoothly but when I try to login by going to KindeSdk.auth_url the ulr that comes to the browser is https://oauth2/auth?client_id=<......> Can you help?...
No description

Updating a User: changing email address

I'm looking into the Management API to figure out how to update a user's email, if they want to change it. I couldn't find a way to do that, since the Update User endpoint has no 'email' field. Additionally, I was surprised to see that the 'id' parameter is not required to update a user? How does that work?...
No description

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!");...