Native App: how does deep links works?

0
Hi,   I am trying to implement the Deep Link feature as described on the documentation portal (https://docs.mendix.com/refguide/mobile/using-mobile-capabilities/deep-links/).   It's a good starting point but it doesn't handle the goal of deep links: open pages inside an app.   For example, I want to open a details page of an invoice based on the invoice number. Ofc I can use a nano flow, but is this the best way to archive the goal? Something like: myapp://invoices?action=view&id=123   Are there some examples available?  
asked
3 answers
0

Hello,

 

You can refer this documentation https://docs.mendix.com/refguide/mobile/using-mobile-capabilities/deep-links/

 

Hope it helps!

answered
0

While it's a good starting point, I am specifically interested in understanding how to achieve the primary goal of deep links, which is to open specific pages inside the app.

https://claspo.io/blog/how-to-get-sales-on-shopify-10-steps/

 

answered
0

When you register a deeplink with a native app, you basically provide an endpoint for an external system to call. Whatever logic happens when the url is called is up to you. It works just like calling a regular nanoflow, so you can model the deeplink nanoflow to show a specific page in your app based on the parameters included in the url.

answered