How to open a link using a microflow?

3
How can I open a link (url) using a microflow? Is there any action for it?  
asked
3 answers
5

Hi Maxim

Microflows are server side and could not open a link.

Though a widget or nanoflow can help you out. There is an “Open URL” action in the Nanoflow commons https://appstore.home.mendix.com/link/app/109515/

Cheers, Andries

answered
3

You need to get the microflow to open a page with a URLRedirector widget on it first. This will then redirect the browser to the new URL. You can download the widget from the App Store.

Hope this helps.

answered
0

You can trigger a nanoflow to open a link using

window.open(url, windowName, [windowFeatures])
answered