Hey everyone! How do you change the user's passwor...
# support-questions-legacy
d
Hey everyone! How do you change the user's password? I'm trying to use the
ThirdPartyEmailPassword
recipe but without success. I'm receiving an Internal Error 500.
Copy code
Error: SuperTokens core threw an error for a PUT request to path: '/recipe/user' with status code: 500 and message: Internal Error

    at Querier.<anonymous> (C:\Users\xxx\Desktop\supertokens-example\supertokens-example-api\node_modules\supertokens-node\lib\build\querier.js:259:31)
    at Generator.throw (<anonymous>)
    at rejected (C:\Users\xxx\Desktop\supertokens-example\supertokens-example-api\node_modules\supertokens-node\lib\build\querier.js:22:44)
    at processTicksAndRejections (node:internal/process/task_queues:96:5)
My code is:
Copy code
js
let response = await ThirdPartyEmailPassword.updateEmailOrPassword({
  userId,
  password: updatedPassword
})
UPDATE It is now working! Please check the issue https://github.com/supertokens/supertokens-node/issues/514
5 Views