Question

I have an ad(android/iOS) campaign running on facebook. Currently on the app manager(ap dashboard) I'm getting the following information: Campaign reach, frequency, clicks etc but the 'mobile app installs' field is displaying 0 even after my friend installed it via the facebook ad. How to know how many people have installed my android/iOS app via a facebook ad?

Était-ce utile?

La solution

Make sure you follow all the steps here https://developers.facebook.com/docs/ads-for-apps/mobile-app-ads

Especially the section "Add the Facebook SDK". In it, it tells you where to call either

[FBAppEvents activateApp]; // for iOS

or

AppEventsLogger.activateApp(...); // for Android

Which tells Facebook that the app was successfully installed. Otherwise, Facebook would not know that the app was installed.

Autres conseils

You can get userid of user when he/she logs in into your application, and store this id to server. And thus come to know how many people have installed your application.

I had the same problem but couldn't figure it out. Even on my app dashboard the 'mobile app installs' field is showing 0

Licencié sous: CC-BY-SA avec attribution
Non affilié à StackOverflow
scroll top