Send and access Query string Parameters in URL Mendix using Deep Link - Mendix Forum

Send and access Query string Parameters in URL Mendix using Deep Link

1

URL Pattern:

http://localhost:8080/link/CustomerOffer?LAN=ABCD1122&user_auth=ABCD123

Page URL             :               CustomerOffer

Parameters        :       LAN, user_auth

Help URL: Deep Link | Mendix Documentation

Steps to achieve:

  1. Create microflow with name “MF_CustomerOfferDetails” with two string parameters “LAN” and “user_auth” and allow access to all roles.

 

  1. Create page with name “AnonyousCustomerDetails” and set URL properties “/CustomerOffer”

 

  1. Download Deep link module from Market place

 

 

  1. In Setting => Runtime => After Startup => set “DeepLink.StartDeeplink”

          

 

  1. Security => User Roles => Anonymous => Edit => Deeplink => check User

 

  1. Navigation => Default Home Page => SET DeepLink.DeepLinkHome

 

 

  1. Set Allow Roles “Admin, Anonymous, User” for below microflows

 

 

  1. Create DeeplinkOverview Page to create URL and allow access to Administartor.

 

 

 

 

 

 

 

 

 

 

 

  1. Create Menu link in Navigation:

 

 

  1. Run Application and Login with Administrator and create New deeplink

 

 

  1. Set debugger for MF_CustomerOdderDetails.

Now open another browser chrome, or edge and paste below link

 

http://localhost:8080/link/CustomerOffer?LAN=ABCD1122&user_auth=ABCD123

 

asked
0 answers