-
Notifications
You must be signed in to change notification settings - Fork 3.6k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
fetchDeferredAppLink receives nil #1562
Comments
code of the method https://ibb.co/T4xY4vH |
yes, we are having same issue, when getting a deferred link from facebook ads. Please advise. |
Hi there We've also been experiencing issue with
Currently we're blocked from delivering a new feature to users and also an existing feature no longer works because of the nil URL issue. Is there any plan for Facebook's iOS SDK team to investigate this issue? If there is any further info or help we can do to help you debug this let us know Thank you |
Hey there, it looks like there has been no activity on this issue recently. Has the issue been fixed, or does it still require the community's attention? This issue may be closed if no further activity occurs. Thank you for your contributions. |
This still has not been resolved? Thats disappointing. |
I remember there was a change where deep linking won't work on devices where the limit ad tracking setting is enabled. Could this be the case here? |
Yea, that could be it. 👍 |
Hello there @joesus , is there any news on this topic? This issue is still happening, both
|
Hi @victor-yn , it only works when IDFA is not nil and additionally you need to set ATE(AdvertiserTrackingEnabled) to be true to have it work in iOS 14+ |
Hello @KylinChang , I confirm IDFA is not nil and ATE(AdvertiserTrackingEnabled) is set to true. Here's a code snippet: ATTrackingManager.requestTrackingAuthorization { status in
switch status {
case .authorized:
Settings.setAdvertiserTrackingEnabled(true)
AppLinkUtility.fetchDeferredAppLink { url, error in
/* At that point, both url and error are nil */
}
default: break
}
} Both |
I found out why. You must turn on You's and facebook's app Advertiser tracking!!!! |
How to actively trigger the facebook ATT popup? I can't find a place to turn on facebook AD tracking |
reopen Facebook application few times, will request ATT permission. but still not work for me. url and error alway nil. disappointing. |
In closure of the fetchDeferredAppLink method I receive url-nil! if started after update on iOS 14 and new sdk version. on iOS 13 worked fine! Please tell me what is wrong! I am testing view Facebook tool for deferred deep links!
Thanks
The text was updated successfully, but these errors were encountered: