Hi,
In our app we have a flow when user receives an email with link with token as parameter and should click the link and be redirected to the proper screen in the app. In version 9 we used a web screen with redirect like this:
"window.location = 'osnowmyappname://"+GetApplicationLink(Module:"myappname",Screen:"my screen",Parameters:"Token="+Token,Protocol:"osnowmyappname")+"';",
GetApplicationLink is no longer exists ion v10. What is an equivalent or another way to create this flow?
Thank you.
Best regards,
Nick
Hi Mykola,
Assuming you have a native application build with OutSystems 10, you can assemble the deeplink this way:
yourappidentifier://YourApp/YourScreen?YourParameter=Value
yourappidentifier is the appID you use to generate your native application.
Cheers,R