Page not found forgot password

-1
Hi Guys, I have configured the forgot password modules and In email I am getting a basic templates which is configured.I am also getting forgot password url like this http://localhost:8080/link/ForgotPassword?GUID=5c2cae3d-7279-497a-a7db-6c615050c739 but when I am clicking its giving page not found message.  
asked
5 answers
1

I believe that there is some more you need to do to setup the deeplinking. The following is in the documentation of the DeepLink module:

After handling a request the DeepLink module will redirect to the homepage of your application. The homepage is configured in the navigation.

Instead of opening the default homepage the DeepLink module needs to figure out what microflow is associated with the requested deep link. For this you need to change the default homepage in your navigation to a custom microflow.

If default homepage is already a microflow, you should modify it.

The first activity in this custom microflow has to be a Call microflow activity which calls Deeplink.DeeplinkHome. This microflow returns a boolean value which indicates if the deeplink module will start triggering a microflow. Add an exclusive split which handles the result of Deeplink.DeeplinkHome.

  • When the result of Deeplink.DeeplinkHome is true the custom microflow should end. The DeepLink module will take of calling the correct microflow.

  • When the result is false the microflow should continue with an Open Pageactivity which opens the page or microflow which is your default home page.(The original intended behavior).

Hopefully this helps.

 

answered
0

Looks like you've not set up the deeplink module?

answered
0

Hi,

I have set up the deeplink like this.

 

Now,when I am clicking the URL http://localhost:8080/link/ForgotPassword?GUID=4b90c83b-b9a7-4a99-8b24-08094d64ed49. Its redirecting me to home page.

What I am missing please guide

 

 

answered
0

Hi,

This is the the microflow I have created

\

 

And I am calling it like this

 

But when I am clicking the link on my mail its redirecting to homepage

 

http://localhost:8080/link/ForgotPassword?GUID=347d46c8-e466-4efa-82b7-02d61c2dd27e

 

 

The selected microflow callstep3 is not getting executed.

answered
0

Please ensure that you're following the documentation of the Forgot password module (link). Your deeplink should be generated from the Forgot module configuration page and not manually.

answered