Skip to content

Additional Meta AudienceNetwork steps

Dmytro Uzhva edited this page Dec 2, 2024 · 3 revisions

Data Processing Options for US Users

Meta Audience Network Data Processing Options for US Users Limited Data Use is a data processing option that gives you more control over how your data is used in Meta’s systems and better supports your compliance efforts with various US state privacy regulations. To utilize this feature, you must proactively enable Limited Data Use. Visit Meta’s developer documentation for details.

If you do not want to enable Limited Data Use (LDU) mode, pass an empty string as a value of build manager mediation extras with key FB_dp:

manager = CAS
    .buildManager()
    .withMediationExtras('FB_dp', '');

To enable LDU mode using geolocation, call withMediationExtras in a form like this:

    .withMediationExtras('FB_dp', 'LDU');

To enable LDU for users and specify user geography, call withMediationExtras in a form like this:

    .withMediationExtras('FB_dp', 'LDU_1_1000');

iOS Advertising Tracking Enabled for Audience Network

Implement the setAdvertiserTrackingEnabled flag, irrespective of the use of mediation, to inform Facebook whether to use the data to deliver personalized ads.
Set flag to inform Audience Network to use the data to deliver personalized ads in line with your own legal obligations, platform terms, and commitments you’ve made to your users.

    .withMediationExtras('FB_track', '1');