Did not use affiliate link
I've been using Bytegrad's videos, but I had been watching them on my phone. I didn't click on any link when I went to sign up, I just googled. How can I make sure he gets the appropriate attribution for my recent purchase?
Error code: 1656
hi i am new to kinde.
i am working on a next js project. so i setup kinde it was working fine on localhost. for mobile view i try to use network URL for that i changed all .env.local and kinde dashboard URLs. but getting Error code: 1656...
504 Errors
So I tried to continue development on one of my projects,
And noticed Kinde was only working on one of them as all other projects return 504.
So I went to admin panel of kinde and also there I was only able to login into 1 admin panel of for example business A , the admin panel of B C D were unreachable....
Created a Business, deleted it, can't take subdomain back
Hi team,
I created a kind subdomain boostle.kinde.com - then messed up some settings so though, oh I'll just delete this business and start again, now I can't obtain that subdomain back.
Any chance I can get it back?...
Kinde + supabase
Which is the best way to implement supabase with Kinde?
This method looks like the users id directly syncs with supabases user_id? - https://kinde.com/blog/engineering/kinde-with-supabase/
This method looks like it keeps the id from kinde seperate from supabase - https://youtu.be/E9sN9Wol3GI?si=cOl66FLgIxMuQ0OU...
What is the proper way to test if user is authenticated?
I am using sequence below to test if a user is authenticated or not. However, this causes an async call to kinde as I understand for each isAuthenticated() for ex.
Is there a better way to handle this and obtain the authentication status?
const { getUser, isAuthenticated } = getKindeServerSession();
const authenticated = (await isAuthenticated());...
Kinde + bubble.io
Hi guys, I need help with integrating, can we somehow authorise users of babble app with kinde ?
`oauth2/token` endpoint returns 502 Bad Gateway error
I am trying to call the
/oauth2/token
endpoint from a Hono.js server (running in a Bun environment) and am getting a 502 Bad Gateway response. This is my code:
```js
import { Hono, type Context } from "hono";
import { GrantType } from "@kinde-oss/kinde-typescript-sdk";...Import users via CSV import hangs
I'm trying to import users into a Dev env via CSV, and the UI is hanging.
File looks like
```...
Sveltekit Auth failing on build and preview
Hi,
I have set up authentication using the guide and when I npm run dev I have no issues. However as soon as I npm run build or npm run preview everything builds but when I go to click logon rather than a reconnect I get a 500 server error with a console log saying process is not defined in the kinde-typescript-sdk.
I have narrowed it down to being the handleAuth(requestEvents) function in the kindeAuth nested folder however I'm not sure whats causing this and if its a bug or something I caused....
Typeform - Kinde integration
We will receive pre-application with typeform and the data entered in typeform should be taken and user registration should be made in kindede, but a profile should also be created in the local db. Does anyone have any idea how this can happen?
Google Calendar integration support
How do i add google calendar scope to kinde auth?
I am trying to integrate google calendar with kinde auth but I am not able to find any resource related to it...
NextJS SDK Active Sessions
Is there any chance to list the user's active sessions with Kinde NextJS SDK?
Such a topic was opened before but left unfinished :/
https://community.kinde.com/is-there-a-way-to-get-the-active-sessions-of-a-user-7XdMgd8m0KCG...
Kinde creates 2 identities when I try to signup an existing email using Google social connection
I first signup a user by manually inputting email + password, the user identity is created in Kinde. I then go signup again using google social connection and instead of recognizing it's an existing email and prompting for Kinde password, it instead creates a 2nd Kinde user identity with a separate kpId.. I would expect Kinde to not allow 2 identities with the same email. Is this a bug?
Error: State not found
I deployed the application on Vercel and when I try to log in, I have this error and redirection to this site. Before that on my localhost dev server no errors occurred, the application and kinde worked perfectly.
Here are the changes I made before deploying to vecel:
By the way, here is the vercel deployment link: ...
Billing Access
Hey in our app we’re a SPA in react and using the callback login flow (i think this is ok because no kinde secrets are on the client)
We’re trying to integrate stripe to make sure users who pay are only having access
Can we get early access so we can move quickly and continue with kinde to reduce complexity?...
Callback URL invalid
I'm trying to implement custom auth pages.
In my Python I redirect to the auth endpoint with both the connection_id for email+code auth and the email as email_hinty
Even though I have provided a callback url
https://localhost:3000" for testing, i then keep getting an error....
getUser returns null when Using Kinde and Vercel Multitenancy
Hi, i am using Vercel's multitenancy architecture. I am able to successfully protect my pages at root (eg app.localhost:3000, app.localhost:3000/account etc). however, when i navigate to my subdomains (eg. demo.localhost:3000, xyz.localhost:3000/account), kinde's getUser from getKindeServerSession returns user null even though the user is logged in which i verified when I go to app.localhost:3000. anyone can point me to where i did wrong and how can i resolve this? thanks
```
const DomainPage = async ({ params }: Props) => {
const { domain, slug } = await params;...
How to process an action post sign-up or login
I am looking to save new user details once a usr sign-up to my site.
As of now I see there is a way to do that here: https://docs.kinde.com/developer-tools/sdks/frontend/javascript-sdk/#handle-redirect
But where am I supposed to put the codebelow?
on_redirect_callback: (user, appState) => {
console.log({user, appState});...
Custom Auth Page with Python
hello y'all!
i would like to use my own custom auth pages as a frontend to kinde.
my app is built with the python framework "reflex" and the goal is to trigger the auth-code email via my custom page so that my users only interface with a kinde-hosted page when they confirm the auth code.
...