Open jrb1989 opened 7 months ago
Hi @jrb1989,
Deferred deep link callback will get triggered when the deferred deep link (parameter which you might have placed inside of the tracker URL to which the install got attributed) is obtained by the SDK from our backend after tracking install. So the scenario to see deferred deep link triggered is to:
deep_link
parameter.deep_link
parameter from your tracker URL.If you are just opening already installed app via some deep link, deferred deep link is not the place where you will see that link reported (because it's not deferred).
In case you have any further questions on this topic, feel free to ask.
Cheers
Hi @jrb1989,
Deferred deep link callback will get triggered when the deferred deep link (parameter which you might have placed inside of the tracker URL to which the install got attributed) is obtained by the SDK from our backend after tracking install. So the scenario to see deferred deep link triggered is to:
- Remove your app from the test device.
- Make sure that the test device is forgotten from our test console for your app.
- Click on tracker URL to which you have appended
deep_link
parameter.- Install the app on your test device.
- Open the app / launch SDK inside of the app.
- If the install of that app is successfully attributed to the tracker URL you used in step 3, then you will see deferred deep link callback being pinged with the value of the
deep_link
parameter from your tracker URL.If you are just opening already installed app via some deep link, deferred deep link is not the place where you will see that link reported (because it's not deferred).
In case you have any further questions on this topic, feel free to ask.
Cheers
Thanks @uerceg for the quick reply
one doubt the deep_link
parameter
do we have to add it manually? or is it added from the Adjust console?
I am not 100% sure if this is something that you can add as part of some campaign links automation on the dashboard (I assume that it might be the case), but nonetheless, it's for sure that you can add it manually. For this to work, you need to:
abc123
for it).deep_link
parameter to the tracker URL.If the deep link you wanna pass to your app is your-app-scheme://path/morestuff
, then the tracker URL should look like (deep_link
value needs to be URL encoded):
I have implemented according to the flutter SDK documentation, but nevertheless the object
deferredDeeplinkCallback
always returns null when the app is opened with a deep link created from the adjust console.The app opens correctly but however I can't extract any information from the link because the object in charge for this is always null, could someone help me?