parse.com - parse password reset email -


i have moved our parse server onto elastic beanstalk instance , result have had set mailgun email adapter send out password resets.

my issue links provided password reset email not work:

cannot /apps/pvrdbvgdey6k59nq4tmoyuokcy0szcfp6gcgfge0/request_password_reset?token=sdvc5xlor4ohminfnekxc7wuz&username=testuser 

the code

emailverifytokenvalidityduration: 2 * 60 * 60, // in seconds (2 hours = 7200 seconds)  preventloginwithunverifiedemail: false, // defaults false  publicserverurl: process.env.server_url || 'http://localhost:1337/parse', appname: 'instyle',  emailadapter: {     module: 'parse-server-simple-mailgun-adapter',     options: {         fromaddress: 'no-reply@domain.com',         domain: 'domain.com',         apikey: 'key-example',     } } 

there no error code. works me current parse-server v.2.3.2.

may process.env.server_url doesn't have /parse path?

in anyway, correct path parse-server password recovery should be: /parse/apps/[appid]/request_password_reset?token=[token generated parse]&username=[username]


Comments

Popular posts from this blog

jOOQ update returning clause with Oracle -

java - Warning equals/hashCode on @Data annotation lombok with inheritance -

java - BasicPathUsageException: Cannot join to attribute of basic type -