Deeplink URL parameter

0
I am creating deeplinks programmatically so that the first part of the deeplink address can be customized.  The issue is that part of the URL is not passed as a parameter into the microflow so I can see which deeplink was hit.  I’m using the same microflow to fire many deeplinks so I want one of the incoming parameters into the microflow to be the actual first part of the URL.  For example:  https://myapp.mendixcloud.com/link/THIS_IS_THE_PART_I_NEED/moreinfohere ← moreinfohere is the only thing passed into the microflow.  Any ideas how I could extend the deeplink module to allow this functionality?
asked
3 answers
0

If THIS_IS_THE_PART_THAT_I_NEED is just a set of values, you might create one page for each value and use page-property 'url’ to make the page available with https://myapp.mendixcloud.com/p/THIS_IS_THE_PART_I_NEED/<Dataview-objectid>

answered
0

I think you have 2 options:

1) Extend your URL so you have just one configured deeplink:

https://myapp.mendixcloud.com/link/somethingelse/THIS_IS_THE_PART_I_NEED/moreinfohere

That way, you’ll have the full path you need in the microflow.

2) Change the Deeplink module

Edit the java code that calls the deep link microflow, and add the additional parameter

answered
0

just get the pendingLink off the session, and get the DeepLink/Name associated to it ;-) I think that is your aim, right?just get the pendingLink off the session, and get the DeepLink/Name associated to it ;-) I think that is your aim, right?

answered