cordova-ionic-phonegap-branch-deep-linking-attribution icon indicating copy to clipboard operation
cordova-ionic-phonegap-branch-deep-linking-attribution copied to clipboard

can't get path and query string parameters from deep link in Ionic 3 app

Open AleCat83 opened this issue 4 years ago • 0 comments

Hello,

I am trying to create a deep linking system using branch.io for my mobile app iOS and ANDROID using Ionic 3.

I have this URL

https://myurl.com/shop/productId=1234

I created a QuickLink into the dashboard with:

$deeplink_path: /shop $canonical_url: https://myurl.com

In the Application (Ionic 3 with cordova-branch-sdk) I init the session calling

this.branch.initSession().then(branchIoData => { console.log(JSON.stringify(branchIoData)) }

When I click on the URL from iOS or Android I correctly receive the event with the following data

{"+clicked_branch_link":false,"+is_first_session":false}

but I don't see any way to extract the path and the parameter productId=1234.

How can I accomplish this?

Also, the event seems to be working only if the app is closed, isn't it supposed to work if the app is active?

Thanks

AleCat83 avatar Jul 28 '20 19:07 AleCat83