__maxom__
__maxom__
KKinde
Created by __maxom__ on 3/19/2025 in #💻┃support
Kinde Management API with custom domain
Hi Kinde team, Wanted to check if it is possible to use the Kinde Management API with a custom domain. I've tried creating an API but I'm unable to add any scopes to it. There is a default Kinde Management API with the Audience https://<app>.kinde.com/api I have enabled custom domain and I was wondering if we can use https://customdomain/api instead ?
8 replies
KKinde
Created by __maxom__ on 3/1/2025 in #💻┃support
Adding an existing Kinde user to a new organisation
Hi, Thanks for a wonderful product. This is more of a generic question that I'm unable to find an answer to. I'm currently building a B2B2C SaaS application and the business admins can add users(clients) to their business so that they can login to the business dashboard. What I have noticed is that if a user already exists in Kinde, and I want to try to add a user from the organization, I get a "Email already in use" error. (Example a user is already a client with one business and is becoming a client in another business). What is the best way to deal with this scenario ? Do I have to write a custom logic to check if the user exists in Kinde. If yes, add the user to the organisation. If not, then create an user and then add them to the organisation ? Or is there a way where Kinde as a platform can do this check ? Check if user exists in pool, add to org if yes. Or create a new user and add to org ? Thanks.
93 replies
KKinde
Created by __maxom__ on 2/23/2025 in #💻┃support
Access Token claims not updating after "Refresh User Claims and Invalidate Cache"
Hi, I'm currently building a custom user onboarding flow with a multistep form and calling one of my API path. Within my application settings under Tokens, I have customized the access token with additional claims including Organization Name. Within this path, below are the high level actions being performed: 1. Invoke the API path with the Access token (Bearer token) 2. Validate the token using Kinde JWK 3. Check if the JWT token contains the key org_code 4. If no, then make multiple calls to the Kinde management API to create an organization, add feature flags to the organization, add the user to the organization with an owner role/permissions and then Refresh User Claims and Invalidate Cache. 5. On successful response from my API, reload the app to get a fresh access token with the org details in it. 6. If yes, it means the user has previosuly created an organization so redirect to the dashboard of the app. On app reload, I can see the organization information showing in the output of useKindeAuth's getUserOrganizations() but the org keys org_code from the additional claims in the access token is missing. getPermissions() and getOrganization() also return null values. When I log out and login, the claims get updated in the access token. how can I get the claims updated in the access token without having to logout and login ? I'm using the Kinde React SDK. Thanks
26 replies
KKinde
Created by __maxom__ on 2/22/2025 in #💻┃support
Feature flags not showing in created Organization
No description
4 replies
KKinde
Created by __maxom__ on 2/16/2025 in #💻┃support
Kinde Error:
Something went wrong when we tried to authenticate you, and we can’t offer a quick way out. Start a new session and try signing in again. Error code: 1656 Code reference: import { createFileRoute, Outlet } from "@tanstack/react-router"; import { SidebarProvider } from "@/components/ui/sidebar"; import { AppSidebar } from "@/components/sidebars/app-sidebar"; import { SiteHeader } from "@/components/header/site-header"; export const Route = createFileRoute("/_app-layout")({ beforeLoad: ({ context, location }) => { if (!context.auth.isAuthenticated) { console.log("Not authenticated, location: ", location.pathname); // Redirect manually using window.location window.location.href = https://<domain>.kinde.com/oauth2/auth?redirect_uri=http%3A%2F%2Flocalhost%3A5173&client_id=<client-id>>&response_type=code&scope=openid+profile+email+offline&code_challenge=TX0W79xv40MuaJ1DNZFNEK25nKIH2VvS2ypjsYFzD3U&code_challenge_method=S256&state=7edbee716bd9c12fd3ca0a839b1a7f6b4b2f8827fcaa0764bccf53c2; } }, component: AppLayoutComponent, }); function AppLayoutComponent() { return ( <div className="[--header-height:calc(theme(spacing.14))]"> <SidebarProvider className="flex flex-col"> <SiteHeader /> <div className="flex flex-1"> <AppSidebar /> <Outlet /> </div> </SidebarProvider> </div> ); }
34 replies
KKinde
Created by __maxom__ on 2/16/2025 in #💻┃support
@kinde-oss/kinde-auth-react compatibility with React 19
Hi, We are currently in the process of implementing Kinde with our React SPA. When trying to install Kinde, we have encountered an error due to Kinde peer dependency with React npm error peer react@"^17.0.2 || ^18" from @kinde-oss/[email protected] Wanted to check if the package would be updated to support React 19 and in the mean time, is it safe to force install ?
5 replies