Kinde

K

Kinde

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

Join

No audience for token in react native

I am having an issue where I am trying to create a token for a microservice of mine, and that microserivce checks for the audience of incoming requests, since I use it for a web app as well. And I cannot find a way to have the audience set in the access token obtained by the react native app. I am using expo, const client = new KindeSDK( process.env.KINDE_ISSUER_URL!,...

WebHook: User Signup

I tried to create a webhook with Zapier, but the webhook doesnt seem to be receiving any requests/triggers. I signed up for a new account through the normal auth flow for our apps and nothing was recieved by zapier. Screenshots of the configuration are attached. Any ideas?
No description

Verification Code for passwordless signup - taking a lot of time to send

the 2fa code when a user signs up takes forever to be received. It took me 5-10 min to receive the code. Any idea why this is taking so long? I checked spam, promotions, socials, etc. All the usual filters. I have also been told by our users that they "never receive this" - this doesn't happen with social logins, only passwordless....
No description

Getting username

I want to get my username of my user as it is crucial for me to query my database using that.

Instagram Browser Auth Flow Error

Hi, I have integrated Kinde into my app. but users clicking on the signup link from Instagram see this: Is there any setting to resolve this?...
No description

Login from a device that does not support callbacks

Hi, I need to let users authenticate from a device that cannot receive callbacks. I was thinking that there is a way with PKCE to have an API to act as an intermediary and finally call the /token with the code and the code_verifier on the client to get the token. here is the flow I was thinking:...

Determine sign up conversion rate

Is there any way to see the sign up conversation rate? For example, if someone lands at the sign in / create account page, do we have a way of knowing how far they got in the process (i.e. created an account vs not?). To be specific, I see instances of users attempting to sign in (because I see email logs of them requesting a code for their email / password login), yet they never complete the process. My email provider is showing that the emails were sent and delivered, however at times will not indicated that they were "opened". I know this can be due to various reasons, but it sure seems like an issue when I see a user that appears that they attempted to sign in twice (2 emails sent with different verification codes), but they never created an account. Seems to me that they got stuck in the process due to emails perhaps not coming through....

ASP.NET API not validating token

Hi, I am configuring as ASP.NET API, and I am having issues getting my token to validate. I have configured my validation like so: ```builder.Services.AddAuthentication(options => ...

Hoe can i add a 2 custom fields to the registration component?

Hello, I am using the NextJS sdk, amd i would like to add a select field and an image field to the registration form. Is it possible to customize the component this way?...

flutter SDK and getToken

hi, I am using Flutter SDK and running into a situation where my accessToken and refreshToken have expired. As per docs I am using ```Future<String> getNewToken() async { String? token = await sdk.getToken(); if (token == null) {...

Org-scoped M2M tokens?

I'm looking to implement programmatic API access for our users so that they can setup org-scoped tokens on their own (for CICD for example). Is there any way to set this up?

how I can using Application homepage

I'm going to implement Kinde auth with Electron TypeScript , how I can using Application homepage UR

Invalid callback URL

Hey Kinde Team, Hope you are doing well. I feel this weird issue, where it says callback_url is not set to this particular_url even though I have set it. I am using Next JS 14. Development mode seems to work well. +I saw similar issues which were faced by other people here, some did mention that they solved it by deleting and re-creating the app. Well, It doesn't seem to work in my case....
No description

ext_provider claim not present in some cases

(Related to https://discord.com/channels/1070212618549219328/1248094123500769413) There are instances where the ext_provider claim is not provided in the ID token. The ext_provider claim isn't returned if the user had already signed in previously and is still considered logged in from Kinde's perspective. ...

Seeking Help with Customizing Logout Messages in Kinde

Hey guys, I started using kinde and I'm happy so far. However, I have some problems with customizing the text displayed by kinde. For example, the logout message shown by kinde can't be customized in the dashboard and is always the default. I can only see the following information in the Design Tab (see image). Shouldn't my own logout page be used anyway when I have set the NUXT_KINDE_LOGOUT_REDIRECT_URL environment variable? Thanks for any help you can provide!...
No description

Authentication flow: Received : key | Expected: State not found

I am facing this issue that seems that whenever '/api/auth/kinde_callback' is being requested, the app fails and there is this issue in the console of my Next.js app (mentioned in the title). Yesterday I did not have any issues, but today when I tried to work on my app, this is what I have faced

Roles in id token

Hi! I've searched everywhere but I can't find a way to customize the id token in order to include roles. Is this supported, or is it only possible with the access token?

update user email in code

Is there a way to use Kinde Management API to update the user's email ? I can update the given and family name doing so :
``` const client = await createKindeManagementAPIClient(); ...

Refused to frame 'https://website.kinde.com/' because an ancestor violates the CSP

We're currently experiencing an issue with embedding our application within another application. We've implemented a custom sign-in page, and after users are successfully redirected from Azure AD, we encounter the following error: Refused to frame 'https://canopyroofing.kinde.com/' because an ancestor violates the following Content Security Policy directive: "frame-ancestors 'self'". I went through some of the discussions but could not figure out the solution. We will be embedding our app onto another app (We have a fixed domain.). Is there anything we can do at our app side or this need to if possible configured from Kinde side? ...

picture / ext_provider claim inconsistent

I use the claim ext_provider to determine who facilitated the login (Google, Facebook or Kinde). At times this value is blank. The problem is the picture claim can be in different formats depending upon where it comes from. For example, from Facebook it is an entire JSON structure. Previously, in Auth0, the equivalent of a picture claim was always a URL that we know we could use. Now, I have to determine if the ext_provider is Facebook, because if it is, I need to parse the picture claim and pull out specifically the URL and leave all the extra metadata provided. The problem with this comes about sometimes when I login. On occasion there is no ext_provider value. I think this is when I've already authenticated previously on Kinde so when I attempt to login, my request just goes right through. ...