3

Whenever resetting the password, i will get a link including password reset token using this token how can i get the user related information?

1 Answers1

1

I don't think it is possible. The reset password token can only be used to reset the password via call to accounts.resetPassword API (parameter name: passwordResetToken).

In order to get user related information the accounts.getAccountInfo API should be called, which require other parameters.

HTH

Ilan Huberman
  • 406
  • 1
  • 3
  • 15
  • 1
    This is correct. Gigya does not provide a way to retrieve information about the user from a password reset token because it would dangerously expose user information to do so. If there were a way to do this, then it would open up the possibility of hacker exploiting the information both directly through the exposure of a Login Identifier and indirectly through the use a user's email address to social engineer a compromise of a user's account. – JayReardon Oct 14 '15 at 09:02