I'm looking for a way to launch an app on IOS with a URL including parameters.
For associating a URL with my app I have added a URL type to the Info.plist section in xcode. That works. I can now launch my app when I click this link in safari on my iphone:
<a href="myapp://">Launch my app</a><br/>
I was hoping I could add a URL parameter to this link and retrieve it in the app using the QueryString or QueryParam expressions from the Browser object. Unfortunately this does not work.
Update: When I launch the HTML version of the app with HTML parameters (e.g. mysite.nl/myapp?test=testing123) I can pick up the parameter without problems with queryParam. But the QueryParam expression does not work when I build the app for iOS.
Does anyone know how I can pass a parameter to my app?