You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
If i click on the notification which i received on the developer facebook account, it is opening the installed app, but the method AppLink.fetchDeferredAppLink() always returns null/undefined.
I tried uninstaling the app, then clicked on the deferred link, then installed and opened the app, still same.
Hi there! You have not included enough information about your software environment (versions etc) or test environment (device used, device details) to troubleshoot https://stackoverflow.com/help/how-to-ask
My general process for inspection on issues like this is:
crack open node_modules/react-native-fbsdk-next in an editor
get used to the typescript build process so you can make edits and build them and retry
implement a console.log('hello world') sort of thing in one of your api calls to make sure you are actually making changes
instrument all related API calls in the typescript that you call with logging of all parameters sent to native module and all return values that come back
instrument all related native module calls with logging of all parameters received from javascript and all return values to send to javascript, and the same for all the system APIs called and their return values
Plug in a device and do iOS builds from Xcode so you get the console logging clean. For android it's adb logcat and you can do adb logcat | grep 'MY OBVIOUS STRING FOR FILTERING HERE' to get your log messages
That's usually it. I read the documentation on the related API calls that the module uses, compare my parameters sent and return values received with expectations and see where it goes
I will be happy to merge a PR that looks reasonable and has references to the "why" of any changes you made, but won't have time to help further
This issue has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs. Thank you for your contributions.
🐛 Bug Report
AppLink.fetchDeferredAppLink() always returns null in android and undefined in iOS.
To Reproduce
I use https://developers.facebook.com/tools/app-ads-helper to test the deep-link. Here i enter the uri-scheme of the app and checked both Send Notification & Send Deferred.
It shows two popup,
If i click on the notification which i received on the developer facebook account, it is opening the installed app, but the method AppLink.fetchDeferredAppLink() always returns null/undefined.
I tried uninstaling the app, then clicked on the deferred link, then installed and opened the app, still same.
Code Example
The text was updated successfully, but these errors were encountered: