Facebook Deferred DeepLink is not working AppData is null
cctovar opened this issue · 0 comments
Checklist before submitting a bug report
- I've updated to the latest released version of the SDK
- I've searched for existing Github issues
- I've looked for existing answers on Stack Overflow, the Facebook Developer Community Forum and the Facebook Developers Group
- I've read the Code of Conduct
- This issue is not security related and can safely be disclosed publicly on GitHub
Java version
11
Android version
Android 11 Api 30, Android 10 api 29
Android SDK version
17.0.1
Installation platform & version
Gradle
Package
AppLinks
Goals
We've recently found that Facebook's deferred deeplink is not working in our apps. We've updated to the latest version 17.0.1 to check if the problem was that, but no results. The issue is the same as listed in here: #1251.
Also, We noticed that there is the same issue loaded in your SDK's Github repository: #611 (comment) . The link is pointed to the information that I could retrieve by just debugging the internal Facebook call.
Expected results
n/a
Actual results
On these selected lines appLinkArgsJsonString
is null
Steps to reproduce
We use https://developers.facebook.com/tools/app-ads-helper and send the notification, then SDK answer in AppLinkData.fetchDeferredAppLinkData()
AppData returns null
Code samples & details
fun provide(context: Context, onCompleted: (appLinkData: AppLinkData?) -> Unit) {
AppLinkData.fetchDeferredAppLinkData(
context
) {
onCompleted(it)
}
}