Hi all,
I'm hoping to use the deeplink module to retrieve query string parameters from a callback to the mendix app.
My deeplink configuration works in that it calls a MF and passes the object as configured however when i select the "Separate GET parameters" checkbox (which i really want to do) and add a string parameter to the url I receive an error when making the same call to the deeplink
http://localhost:8080/link/sharepointaccess/helloworld?code=123456
.... helloworld in the url is a property of an object saved in the application...
Am i following the instructions in the documentation correctly?
Separate GET parameters (New In 4.2)
If GET parameters are included, they will be separated into multiple String parameters for the microflow that will be called. Example: with a URL like "http://appname/link/mfname/stringtext?param=value&other=test", The microflow that is called can receive two String parameters named "param" and "other", that will be filled with the values "value" and "test" respectively. When creating a deeplink in the GUI, an example URL will be shown for the selected microflow. This property cannot be used in combination with the object type and object attribute properties.