Ready to post? First, try searching for your answer.
{
“user”: {
“email”: “jane.smith2@example.com ”,
“email_verified”: true,
“user_id”: “custom|67891”,
“custom_password_hash”: {
“algorithm”: “bcrypt”,
“hash”: {
“value”: “",
“encoding”: “base64”
},
“salt”: {
“value”: " ”,
“position”: “prefix”
}
}
},
“errors”: [
{
“code”: “ONE_OF_MISSING”,
“message”: “”,
“path”: “custom_password_hash”
}
]
I am getting this error while user import.
my values are as :
Salt as base64: xKuLWAeuFfCXUQlNbLS3yRAtyNfgi+Q3pPmTBFKlqpM=
Hash as base64: SkRKaEpERXdKSEV5V21jeE4yMVViR3BoWmxoUmJqRnlZbHBzY25WcE5rRnFhazlDUzBkMmJHdFpkWFJUT0dWT2MzUkVjMUZ6V1VGdVRFcDU=
Hi @kumar-shikhar_ukg ,
Could you please verify you bcrypt value follow below specification?
Example:
{
"email": "velma@contoso.com",
"email_verified": false,
"custom_password_hash": {
"algorithm": "bcrypt",
"hash": {
"value": "$2b$10$C9hB01.YxRSTcn/ZOOo4j.TW7xCKKFKBSF.C7E0xiUwumqIDqWUXG"
}
}
},
You probably don’t need to pass salt value explicitly. Please check the encoding as well.
1 Like
Yes, with another template withouth salt, user gets imported.
Another question on top of this… does auth0 support becypt in custompassword hash tree with hash and salt tags ??
system
Closed
February 11, 2025, 4:07am
5
This topic was automatically closed 14 days after the last reply. New replies are no longer allowed.