I want to know how to open specific screen in my app , when some qrcode read from my mobile camera ,and that qrcode contains, a url (my website link) + some parameter. currently I can only open home page of my app, when i try to read qrcode through mobile camera. How can i read the parameter from the url? Please do reply it's urgent
I have tried this
onOpenUrl: {
console.log("onOpenUrl:", url);
var urlInfo = AppFramework.urlInfo(url);
if (!urlInfo.host.length) {
console.log("onOpenUrl parameters:", JSON.stringify(urlInfo.queryParameters, undefined, 2));
}
}
urlInfo is blank and "onOpenUrl parameters:" consoles undefind