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?

有帮助吗?

解决方案

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.

其他提示

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

许可以下: CC-BY-SA归因
不隶属于 StackOverflow
scroll top