问题描述
当您集成Facebook SDK来跟踪移动应用安装时,是否使用IDFA,因此在提交应用程序进行审查时,您必须在iTunes Connect问题中回答是相应的问题?
When you integrate the Facebook SDK to track Mobile App Installs, does this use the IDFA and hence do you have to answer yes to the corresponding question in iTunes Connect question when submitting the app for review?
这是应用程序中的代码:didFinishLaunchingWithOptions:
[FBSettings setDefaultAppID:FB_APP_ID_NSTRING];
[FBAppEvents activateApp];
在我的Facebook信息中心中,我的应用程序在安装视图和启用增强兴趣定位:
In my Facebook dashboard, my app is configured with Yes under "Install Insights" and "Enable Enhanced Interest Targeting":
iTunes连接问题我指的是这里显示的:
The iTunes Connect question I refer to is shown here:
这里有很多关于IDFA的问题,但是没有一个(据我所见),它澄清了仅使用Facebook SDK是否使用移动应用安装确实使用了IDFA。
There are plenty of questions here about IDFA, but none (as far as I could see) that clarifies whether using the Facebook SDK solely for Mobile App Installs does make use of the IDFA.
推荐答案
仅在某些情况下。请参阅:
Only under certain situations. See Facebook's FAQ:
- Facebook SDK包含访问苹果广告标识符(IDFA)的代码,但该代码仅在某些情况下执行。
- 在以下情况下,iOS SDK SDK仅访问IDFA:1 )如果您的应用程序通过Facebook的受众群体网络在应用程序中投放广告,或者2)如果您的应用程序记录应用安装或其他移动应用程序事件,以便将这些事件归因于您的广告系列。
- 如果您没有记录App Events(通过FBAppEvents类),那么Facebook SDK不会访问IDFAs。此外,Facebook SDK不需要包含AdSupport.framework。
- 如果您想在不收集IDFA的情况下跟踪应用程序事件,可以在高级设置的应用程序信息中心中禁用IDFA收集
- The Facebook SDK includes code to access Apple’s Advertising Identifier (IDFA), but that code is only executed in certain situations.
- The Facebook SDK for iOS only accesses IDFAs in the following scenarios: 1) if your app serves ads within the app through Facebook’s Audience Network, or 2) if your app logs app installs or other mobile App Events in order to attribute those events to your ad campaigns.
- If you are not logging App Events (via the FBAppEvents class), then the Facebook SDK is not accessing the IDFAs. Additionally, the Facebook SDK does not require AdSupport.framework to be included.
- If you want to track App Events without collecting IDFA, you can disable IDFA collection within your app dashboard in the advanced setting section.
这篇关于Facebook SDK是否使用IDFA进行移动应用安装?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!