App Events for iOS

App events allow you to understand the makeup of users engaging with your app, measure the performance of your Facebook mobile app ads, and reach specific sets of your users with Facebook mobile app ads. This is done by sending an event from your app via Facebook's iOS SDK. This event can be one of 14 predefined events such as 'added to cart' in a commerce app or 'level achieved' in a game, or other custom events.

Demographic Makeup of Mobile App Users

With just a few lines of code, you can get a demographic breakdown of your installed users including age, gender, language and country. You can also choose to send custom app events for any actions a user makes in your app (e.g. making payments, achieving a level in a game etc.) and, likewise, view demographic information for each group of users who performed these actions.

Mobile App Ad Performance

You can also use app events to better understand the engagement and ROI coming from your mobile ads on Facebook. If you have set up app events, they will be reported as different types of actions in Ads Manager so you can see which ads and campaigns resulted in what actions within your app. For example, you may see that a particular ad resulted in 10 total actions. Those actions could be 8 checkouts and 2 registrations, which will be specified in Ads Manager.

Mobile App Ad Targeting

Measuring app events also opens up an easier way to reach your existing app users for mobile app ads. After integrating app events, you will be able to reach your existing users, specific subsets of users based on what actions they have taken within your app, or even percentages of your most active users. For instance you can run ads to bring recent purchasers back into your app to complete more purchases or to your top 25% of purchasers. You can choose an audience to reach based on the app events you are measuring in your app.

Once you implement the predefined app events, you will be able to measure:

  1. the total count of event actions taken within your app
  2. the active users contributing to those event actions
  3. the percentages of your users that are most active
  4. the count of these event actions attributed to a specific ad campaign and
  5. the audience size for ad campaign targeting based on these event actions

To learn more about our mobile app ads, go to our tutorial on mobile app ads for installs or mobile app ads for engagement.

Prerequisites

Before including the code to measure events, you will need to register your app with Facebook and download and configure the Facebook SDK (version 3.6 or higher). To learn how to do this, visit our getting started guide.

Implementation

You can easily insert these app events into your iOS apps using a short snippet of code:

[FBAppEvents logEvent:FBAppEventName{XXXX}];

where FBAppEventName{XXXX} is one of the FBAppEventName* constants shown in the Events table below.

You can also specify a set of parameters and a valueToSum property which is an arbitrary number that can represent any value (e.g., a price or a quantity). When reported, all of the valueToSum properties will be summed together. For example, if 10 people each purchased one item that cost $10 (and passed in valueToSum) then they would be summed to report a number of $100.

[FBAppEvents logEvent:FBAppEventNameAddedToCart
           valueToSum:54.23
           parameters:@{ FBAppEventParameterNameCurrency    : @"USD",
                         FBAppEventParameterNameContentType : @"shoes",
                         FBAppEventParameterNameContentID   : @"HDFU-8452" } ];

Note that both the valueToSum and parameters arguments are optional.

The full list of pre-defined events and pre-defined parameters are listed below.

Events

Each of these events can be logged with a valueToSum and a set of parameters (up to 25 parameters). The table below shows the recommended events and what are typically useful parameters for each event (the common parameter names are defined in the next table). You should include the events that make sense based on the user actions in your app.

FBAppEventName`valueToSum`Parameters

FBAppEventNameAchievedLevel

Level

FBAppEventNameActivatedApp

FBAppEventNameAddedPaymentInfo

Success

FBAppEventNameAddedToCart

Price of item added

ContentType, ContentID and Currency

FBAppEventNameAddedToWishlist

Price of item added

ContentType, ContentID and Currency

FBAppEventNameCompletedRegistration

RegistrationMethod

FBAppEventNameCompletedTutorial

Success and ContentID

FBAppEventNameInitiatedCheckout

Total price of items in cart

ContentType, ContentID ,NumItems, PaymentInfoAvailable and Currency

FBAppEventNamePurchased

purchase price

NumItems, ContentType, ContentID and Currency

FBAppEventNameRated

Rating given

ContentType , ContentID and MaxRatingValue

FBAppEventNameSearched

ContentType, SearchString and Success

FBAppEventNameSpentCredits

Total value of credits spent

ContentType and ContentID

FBAppEventNameUnlockedAchievement

Description

FBAppEventNameViewedContent

Price of item viewed (if applicable)

ContentType, ContentID and Currency

Parameters

The table below are typically useful parameters for inclusion with the events shown above or with your own custom events. Future enhancements to our insights product will use the recommended parameters, but note that you can provide your own parameters as well.

These pre-defined parameters are intended to provide guidance on typically useful logging patterns, and may have a more readable form in reporting and other UI. Your app should log the set of parameters that it's interested in seeing breakdowns on in insights. The recommended description for these are guidance only - you can use these parameters for whatever makes sense for your app.

The parameters are passed via an NSDictionary where the key holds the parameter name as an NSString (iOS SDK constants for the pre-defined ones are listed below), and the value must be either an NSString or an NSNumber:

FBAppEventParameterNamePossible ValuesDescription

FBAppEventParameterNameContentID

string

International Article Number (EAN) when applicable, or other product or content identifier

FBAppEventParameterNameContentType

string

For example music, video, or product description

FBAppEventParameterNameCurrency

string

ISO 4217 code, e.g., "EUR", "USD", "JPY"

FBAppEventParameterNameDescription

string

A string description

FBAppEventParameterNameLevel

string

Level of a game

FBAppEventParameterNameMaxRatingValue

int

Upper bounds of a rating scale, for example 5 on a 5 star scale

FBAppEventParameterNameNumItems

int

Number of items

FBAppEventParameterNamePaymentInfoAvailable

'1' or '0'

1 for yes, 0 for no

FBAppEventParameterNameRegistrationMethod

string

Facebook, Email, Twitter, etc.

FBAppEventParameterNameSearchString

string

The text string that was searched for

FBAppEventParameterNameSuccess

'1' or '0'

1 for yes, 0 for no

Custom App Events

You can also choose to create your own custom events, which is done simply by specifying their name as a string:

[FBAppEvents logEvent:@"battledAnOrc"];

Purchase methods

While calls to logEvent can be made to register purchase events, there is a helper method that explicitly takes a currency indicator. A purchase of USD $4.32, for example, can be be invoked as:

[FBAppEvents logPurchase:4.32 currency:@"USD"];

The currency specification is expected to be an ISO 4217 currency code. This is used to determine a uniform value for use in ads optimization.

Logging app activations

Developers can observe how frequently users activate their app, and how much time they spend using it, by logging an app activation event. Like purchase, there is a helper for logging app activation. For iOS, this typically should be invoked in the app delegate's applicationDidBecomeActive method, as follows:

- (void)applicationDidBecomeActive:(UIApplication *)application {

    // Call the 'activateApp' method to log an app event for use in analytics and 
    // advertising reporting.
    [FBAppEvents activateApp];

    ...
}

Note that use of the activateApp method is the preferred way to log app activations vs. simply logging the FBAppEventNameActivatedApp event, as it performs a few other tasks that are necessary for proper accounting for Mobile App Install Ads.

Automatic In-App Purchase Logging
To save you time and help ensure consistent logging, we have made it possible to automatically log app events related to in-app purchases if you call the activateApp method and enable the “Automatic In-App Purchase” switch in the iOS settings section of the App Dashboard. Note this requires version 3.22 or higher of the iOS SDK. You can learn more about this feature in this FAQ.

API reference documentation

More details about the FBAppEvents class can be found in the reference documentation.

Verification

If you're an Admin or a Developer of an app, and want to validate that you've correctly implemented app events, go to App Insights, choose your app and then select 'App Events' from the left hand menu (this will not appear until your app starts logging events). The bottom half of this page will have a "Most recently logged events" section that looks like the following:

This table lists the last 20 events logged by your app, including the event name, app version, device type, value and parameters logged with the event. Events show up here as soon as they've been transmitted to the server from your mobile app.

You can pinpoint events coming from a version under development (vs. one that's in production) by choosing the App Version dropdown as shown in the image above. This will filter the events shown to that version. (The App Version for your app will be logged automatically from the version stored in the iOS app's bundle.) You can similarly filter by Event Name.

Ads Attribution

Once you've implemented app events into your iOS app, the app events you've added will automatically be tracked when you run Facebook mobile app ads for installs or mobile app ads for engagement and conversion. Initially, we will only track the 14 predefined events described above.

If using Power Editor to set up your ad, please ensure you use the default tracking settings, or if you manually configure tracking settings that the following tracking_spec is present, with <app_id> replaced with your app's Facebook App Id.

{"action.type" : ["app_custom_event"], 
 "application" : [<app_id>]} 

What's reported:
If you have set up app events, they will be reported as different types of actions in Ads Manager. For example, you may see that a particular ad resulted in 10 total actions. Those actions could be 8 checkouts and 2 registrations, which will be specified in Ads Manager.

We offer a range of different attribution windows to choose from. Here's a breakdown of the various sources of Facebook app events reporting available to developers and the attribution methodology used across each:

  • In the default Campaign Report, Ads Manager reports on app events based on a 1 day view and 28 day click attribution window. This represents the count of events that took place within 24 hours of someone viewing the ad or 28 days after clicking on it.
  • In the full Actions by Impression Time Report we offer advertisers a range of attribution windows to select from when tracking app events, based on what is most meaningful for their business. Advertisers can see a count of events that happen within 1 day, 7 days, and 28 days after a person clicks on an ad, and 1 day, 7 days, and 28 days after viewing an ad when they export the Actions by Impression time report to Excel.

In order to view actions attributed to ads, go to Ads Manager and choose your specific campaign and ad group. You should see a chart similar to this:

App Insights

App events reporting is also available in App Insights, which provides a measure of total app events for an app broken down by demographic. In order to view demographic insights about the users of your mobile app, 1) go to App Insights, 2) choose your app and then choose App Events from the left hand menu. You should see a graph similar to this:

This graph shows the app events that have been received by Facebook for your app. You can then drill down and get details of the different events by clicking on the event name in the table at the bottom of this graph. For instance, clicking on the "Purchase on Device" link will lead to a chart with details on Mobile Purchase events, including this table of demographics at the bottom:

By viewing this chart, and the other content on this page, you can identify the age, gender, country and locale breakdown of your app users, as well as device usage and breakdown by the parameters that were logged with your event.

You can also view the distribution of users taking action to understand what percentiles are most active or are contributing the most value. More than that, you can even choose to target a range of people within those percentiles for advertising to effectively reach them.

Data Control

The Facebook SDK offers a tool to give your users control over how app events data is used by the Facebook ads system. Platform Policy requires that you provide users with an option to opt-out when sharing this information with Facebook. We recommend that you use our SDK tools to offer the opt-out. The tool is described below. Facebook also respects device-level controls where available, including the Advertising Identifier control on iOS6 and greater.

setLimitEventUsage behavior

If the user has set the limitEventUsage flag to YES, your app will continue to send this data to Facebook, but Facebook will not use the data to serve targeted ads. Facebook may continue to use the information for other purposes, including frequency capping, conversion events, estimating the number of unique users, security and fraud detection, and debugging.

[FBAppEvents setLimitEventUsage:YES];

The limitEventUsage setting will persist across app sessions. To use this property, you can match your opt-out's UI to the value of the limitEventUsage flag.

Data Sharing

App Event data shared by you with Facebook will not be shared with advertisers or other third parties, unless we have your permission or are required to do so by law.

Was this document helpful?