migration of user issue
# support-questions
m
Hi When trying to migrating users with their password hashes, I get a 400 response with the error
Caused by: io.supertokens.webserver.WebserverAPI$BadRequestException: Password hash is in invalid format
from the core. These are passwords generated by
django
, they are
argon2
hashes, example:
argon2$argon2i$v=19$m=512,t=2,p=2$NG5WSFhyV1p3cWhV$8r0ADt/7D1Og1mglH0qHZg
Any idea what could be going wrong?
r
hey @mayankgopronto can you send the core's error log?
r
@jscyo can help here when he is free
And also which version of the core are you using?
m
I'm on
4.4
r
alright. Will wait for @jscyo
j
Hey @mayankgopronto can you try removing the initial
argon2
from the password hash and try importing again? so in the example listed above it should be
$argon2i$v=19$m=512,t=2,p=2$NG5WSFhyV1p3cWhV$8r0ADt/7D1Og1mglH0qHZg
m
Ya, that works. Thanks a lot!
2 Views