简体   繁体   English

跟踪来自Facebook广告的iOS移动安装

[英]Track iOS mobile installs from Facebook ad

I have created app on Facebook and add set for the app and integrated the SDK in my Xcode, configure my plist and relevant code below in AppDelegate:- 我已经在Facebook上创建了应用程序,并为该应用程序添加了设置,并将SDK集成到了Xcode中,在下面的AppDelegate中配置了我的plist和相关代码:-

- (void)applicationDidBecomeActive:(UIApplication *)application {
  [FBSDKAppEvents activateApp];
}

- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions {
  return [[FBSDKApplicationDelegate sharedInstance] application:application
                                    didFinishLaunchingWithOptions:launchOptions];
}

- (BOOL)application:(UIApplication *)application
            openURL:(NSURL *)url
  sourceApplication:(NSString *)sourceApplication
         annotation:(id)annotation {
  return [[FBSDKApplicationDelegate sharedInstance] application:application openURL:url sourceApplication:sourceApplication
                                                      annotation:annotation];
}

On Facebook Under the app there are some menu: 在Facebook上该应用程序下有一些菜单:

  1. Status & Review menu is pending 状态和审核菜单处于待处理状态
  2. App Details menu is left pending (Red icon for that pending part in both the menu's) “应用程序详细信息”菜单处于待处理状态(两个菜单中该待处理部分的红色图标)

For the First Point, In this Below is mentioned, iOS App Please provide a version of your iOS app for our team to review. 对于第一点,在下面提到的iOS应用,请提供您的iOS应用版本供我们的团队审核。 for above i need to provide simulator build and its for reference on Facebook is that 对于上述我需要提供模拟器构建,其在Facebook上的参考是

If you create an app that uses Facebook Login you need to submit for review. 如果您创建使用Facebook登录名的应用程序,则需要提交进行审查。 See Review Guidelines. 请参阅审核准则。

I just need to track how many apps download from Facebook ad and I am not providing doing any login in the app for the Facebook. 我只需要跟踪有多少应用程序从Facebook广告中下载,我不提供在Facebook应用程序中进行任何登录的信息。

But if I close app details part. 但是,如果我关闭了应用程序详细信息部分。 How will I know when my app goes live and people intalls it form Facebook add it will track. 我将如何知道我的应用何时上线,人们会从Facebook添加该应用并对其进行跟踪。

Any help/ideas? 任何帮助/想法吗?

In order to track mobile app installs you do NOT need to have your application reviewed. 为了跟踪移动应用程序的安装,您不需要审查您的应用程序。 You only need to submit for review if you want your application to be listed in the Facebook App Center (uses you App Details Page) or if you are using Login and need certain permissions. 仅当您希望您的应用程序在Facebook App Center中列出(使用“应用程序详细信息”页面)或使用“登录”并且需要某些权限时,才需要提交审阅。

In order to make your application live to the public all you need to do is go here: https://developers.facebook.com/apps/YOUR_APP_ID/review-status/ and toggle the switch I have highlighted below and it will be live to the public: 为了使您的应用程序对公众公开,您需要做的只是在这里: https : //developers.facebook.com/apps/YOUR_APP_ID/review-status/并切换我在下面突出显示的开关,它将变为现实对公众:

状态与评论

This means that the public can start using your application. 这意味着公众可以开始使用您的应用程序。 Just so you know you can also ensure that your application is set up correctly by using the App Ads Helper . 请注意,您也可以使用App Ads帮助器来确保正确设置了您的应用程序。

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM