facebook/facebook-android-sdk

Facebook Deferred DeepLink is not working AppData is null

cctovar opened this issue · 0 comments

Checklist before submitting a bug report

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
Captura de pantalla 2024-10-18 a la(s) 2 39 49 p  m

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)
            }
    }