read parameter on webview-URIschemeHandler

hello, I’m using Webview property URIschemeHandler and succeed to call function when the inner webview request URIscheme.

But, I cannot get some additional parameter on it.

I already try to use InterApp module, but receiveUri event only fired on external request - not in the inner webview request.

is there any special way to read parameters on URIschemeHandler in Webview?

I got the answer from slack,

On UX

    <WebView Url="{url}" URISchemeHandler="{WebEvent}" ZoomEnabled="false">

And Get it like this

function WebEvent(args){
  console.log(args.url);
};

now I can get the whole URI request.