Trying to implement password recovery in my meteor application.
I can create a recovery email that points to my application:
onemore.meteor.com/#/reset-Password/[token]
When I click on this link, it goes to the URL, but then the URL is immediately rewritten to onemore.meteor.com/#
When I type Session.get("resetPassword") , it returns undefined
I know that the token is valid. If I copy the last part of the link in the email "[token" "and paste it into the console like Session.set("resetPassword",[token]) , the password recovery form acts as expected.
Why is my URL rewriting onload? Should this happen? Is there any js that I need to interpret this before rewriting?
thanks
url meteor hash token
user3744242
source share