Kinde to Better-Auth

Hello, since the development of this library has impressed me a lot, I want to switch to it, but there is such a problem. In the integration I established with kinde auth before, user ids were kept as autoincrement int in my own database, how can I transfer the data here now?
40 Replies
Furkan Özay
Furkan ÖzayOP2w ago
Does anybody have any idea? @bekacru can you help me ?
bekacru
bekacru2w ago
Hey, I haven't looked into Kinde. Does it allow exporting user data?
user ids were kept as autoincrement
you can use numerical user id with Better Auth
Furkan Özay
Furkan ÖzayOP2w ago
there is no need for this because the duplicate data is kept in my own database, I am only afraid of moving it together with the associated tables for the userId column I got an error when I tried this, it seemed like it was forcing it to be a string, but I will try again, thank you for the information Yes, it works smoothly, but it creates problems in some helper methods, for example, it gives impersonateUser type error and says bad request @bekacru
Furkan Özay
Furkan ÖzayOP2w ago
No description
bekacru
bekacru2w ago
try beta pnpm i better-auth@beta this issues should be fixed
Furkan Özay
Furkan ÖzayOP2w ago
thank you, but I think the error persists because the impersonateUser method tries to convert to string
No description
Furkan Özay
Furkan ÖzayOP2w ago
Also in credentials auth, accountId should have been a string, it warns that the integer came, the registration fails.
No description
Furkan Özay
Furkan ÖzayOP2w ago
I think the best way would be to map the old data and adapt it to the string version, should I wait too long for this to be fixed for now, my customers need to receive updates. @bekacru I apologize for the mention, I'm just trying to find a solution
bekacru
bekacru2w ago
oh I'll make this a priority. It'll be fixed! please ping me, if I incase forget.
Furkan Özay
Furkan ÖzayOP2w ago
thank you very much, I wish there was something I could help you with, but I guess I don't have enough knowledge :/ Will the update come today or should we take a different action plan as a team? @bekacru
bekacru
bekacru2w ago
Hey, probably not today. But will try to do it as soon as possible.
Furkan Özay
Furkan ÖzayOP2w ago
Thank you for the information, I wish you ease @bekacru Is there hope nearby 😄
bekacru
bekacru2w ago
thanks for the ping 😆 on it! Hey @Furkan Özay try pnpm i https://pkg.pr.new/better-auth/better-auth@1976 and let me know if it address your issue
Furkan Özay
Furkan ÖzayOP2w ago
okay I'm trying
Furkan Özay
Furkan ÖzayOP2w ago
@bekacru credentials registration
No description
Furkan Özay
Furkan ÖzayOP2w ago
The accountId column expects a string value, but since accountId sends the user id when registering with email password, it goes as integer and an error occurs.
Furkan Özay
Furkan ÖzayOP2w ago
and the following error during impersonateUser These are the two I've encountered so far
No description
Furkan Özay
Furkan ÖzayOP2w ago
I'm trying
Furkan Özay
Furkan ÖzayOP2w ago
sorry still the same
No description
Furkan Özay
Furkan ÖzayOP2w ago
@bekacru
bekacru
bekacru2w ago
alright will get back to you later with a proper fix let me test it from my end
Furkan Özay
Furkan ÖzayOP2w ago
Okay, I'll wait to hear from you.
Furkan Özay
Furkan ÖzayOP2w ago
I think a field called userId was added here and the situation was the opposite 🙂
No description
Furkan Özay
Furkan ÖzayOP2w ago
Do you want me to share the prisma schema? @bekacru
bekacru
bekacru2w ago
no I wrote a test for a basic flow and it was passing. let me check. Hey, forgot to tell you, that you should enable advanced.useNumberId
Furkan Özay
Furkan ÖzayOP2w ago
I'm trying
Furkan Özay
Furkan ÖzayOP2w ago
Yes, the problem in the registration phase has been fixed, but impersonateUser still gives error
No description
Furkan Özay
Furkan ÖzayOP2w ago
thanks for the fast support by the way @bekacru @bekacru Good morning, will this change come as a main version?
bekacru
bekacru2w ago
Hey, @Ping is working on a more comprehnsive change for the adapters. And he'll include this change on his PR as well. I'll try to patch the impersonation so you can have a PR build until his PR gets merged.
Furkan Özay
Furkan ÖzayOP2w ago
@Ping any update ? Is there an improvement for impersonation? @bekacru
bekacru
bekacru2w ago
You should make impersonatedBy a string field. The issue is that impersonatedBy isn't marked as a reference field. Since it's optional, we didn't want to add a foreign key constraint, which prevents us from determining whether the field should be cast to a number or not.
Ping
Ping2w ago
Hey, I can give you the link to the PR for you to track. Basically most of the PR is done, just have to implement use number id and do testing for it. https://github.com/better-auth/better-auth/pull/1926
GitHub
add(adapter): createAdapter helper by ping-maxwell · Pull Reques...
What? The createAdapter function will handle everything a database adapter shouldn't be. The devs who create database adapters shouldn't have to worry about stuff like incorrect mod...
Furkan Özay
Furkan ÖzayOP2w ago
okey I'm trying yes it happens successfully but if I try with auth.api I get an unauthorized error, when I do it with authClient it works fine @bekacru
bekacru
bekacru2w ago
you ned to pass headers for auth.api
Furkan Özay
Furkan ÖzayOP2w ago
Oh, yeah, I'm so sorry. Thank you very much.
Ping
Ping2w ago
@Furkan Özay What database adapter are you using?
Furkan Özay
Furkan ÖzayOP2w ago
prisma @Ping Good morning, was it released in one of these major versions? @Ping
Ping
Ping2w ago
No it will still be a little away before release. You can track this PR to know if it's merged or not: https://github.com/better-auth/better-auth/pull/1926
GitHub
refactor: Adapter system + new id system by ping-maxwell · Pull...
What? The createAdapter function will handle everything a database adapter shouldn't be. The devs who create database adapters shouldn't have to worry about stuff like incorrect mod...

Did you find this page helpful?