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
I’m experiencing an issue where the onAppOpenAttribution callback does not return data on both iOS and Android. However, I am able to access the networkUserId. Below is the code I’m using:
appsFlyer.getAppsFlyerUID((error,` networkUserId) => {
console.log('errorr', error);
console.log('networkUserId', networkUserId);
appsFlyer.onAppOpenAttribution(data => {
console.log('onAppOpenAttribution inside', data);
try {
// It's important to include the network user ID
adapty.updateAttribution(
data,
AttributionSource.AppsFlyer,
networkUserId,
);
} catch (error) {
console.log('updateAttribution error', error);
}
});
`});
The onAppOpenAttribution callback gets triggered but no data is being returned inside it. This issue is happening on both iOS and Android devices.
👋 Hi @huseyintamer and Thank you for reaching out to us.
You can contact AppsFlyer support through the Customer Assistant Chatbot for assistance with troubleshooting issues or product guidance.
To do so, please follow this article.
I’m experiencing an issue where the onAppOpenAttribution callback does not return data on both iOS and Android. However, I am able to access the networkUserId. Below is the code I’m using:
The onAppOpenAttribution callback gets triggered but no data is being returned inside it. This issue is happening on both iOS and Android devices.
The text was updated successfully, but these errors were encountered: