Intégrer Meta Audience Network aux enchères

This guide shows you how to use the Google Mobile Ads SDK to load and display ads from Meta Audience Network using mediation, covering bidding integrations. It covers how to add Meta Audience Network to an ad unit's mediation configuration, and how to integrate the Meta Audience Network and adapter into a Flutter app.

Supported integrations and ad formats

The AdMob mediation adapter for Meta Audience Network has the following capabilities:

Integration
Bidding
Waterfall  1
Formats
Banner
Interstitial
Rewarded
Rewarded Interstitial

1 Meta Audience Network became bidding only in 2021.

Requirements

  • Latest Google Mobile Ads SDK
  • Flutter 3.7.0 or higher
  • To deploy on Android
    • Android API level 21 or higher
  • To deploy on iOS
    • iOS deployment target of 10.0 or higher
    • The latest Meta Audience Network SDK usually requires the latest version of Xcode.
  • A working Flutter project configured with Google Mobile Ads SDK. See Get Started for details.
  • Complete the mediation Get started guide

Step 1: Set up configurations in Meta Audience Network UI

Inscrivez-vous et connectez-vous à la page d'accueil de Business Manager.

Cliquez sur Commencer, puis sur Créer un compte.

Renseignez les champs obligatoires avec les informations sur votre entreprise, puis cliquez sur Suivant.

Créer une propriété

Une fois que vous avez renseigné les informations requises, vous êtes invité à créer une propriété pour votre application. Saisissez le nom souhaité pour votre application, puis cliquez sur Suivant.

Ensuite, sélectionnez la plate-forme à monétiser.

Ajoutez les informations sur votre application, puis cliquez sur Suivant.

Android

iOS

Configurez votre compte de paiement en cliquant sur Ajouter un compte de paiement. Vous êtes alors redirigé vers une nouvelle page où vous pouvez saisir vos informations de paiement. Renseignez les informations nécessaires, puis cliquez sur Next (Suivant).

Sélectionnez Google AdMob comme Plate-forme de médiation, puis cliquez sur Créer un emplacement.

Sélectionnez un format, remplissez le formulaire, puis cliquez sur Créer.

Notez l'ID d'emplacement.

Cliquez sur OK.

Activer le mode test

Pour obtenir des instructions détaillées sur l'activation des annonces tests Meta Audience Network, consultez le guide de mise en œuvre d'Audience Network pour les tests.

Step 2: Set up Meta Audience Network demand in AdMob UI

Configurer les paramètres de médiation pour votre bloc d'annonces

Android

Pour obtenir des instructions, consultez l'étape 2 du guide pour Android.

iOS

Pour obtenir des instructions, reportez-vous à l'étape 2 du guide pour iOS.

Add Facebook to GDPR and US state regulations ad partners list

Suivez les étapes indiquées dans Paramètres RGPD et Paramètres des réglementations des États américains pour ajouter Facebook à la liste des partenaires publicitaires sur le RGPD et les réglementations des États américains dans l' AdMob UI.

Step 3: Import the Meta Audience Network SDK and adapter

Intégration via pub.dev

Ajoutez la dépendance suivante aux dernières versions de Meta Audience Network Le SDK et l'adaptateur dans le Fichier pubspec.yaml:

dependencies:
  gma_mediation_meta: ^1.0.0

Intégration manuelle

Téléchargez la dernière version du plug-in de médiation Google Mobile Ads pour Meta Audience Network, extraire le fichier téléchargé et ajouter le dossier du plug-in extrait (et son contenu) à votre projet Flutter. Ensuite, référencez le plug-in dans votre pubspec.yaml en ajoutant la dépendance suivante:

dependencies:
  gma_mediation_meta:
    path: path/to/local/package

Step 4: Implement privacy settings on Meta Audience Network SDK

Under the Google EU User Consent Policy, you must ensure that certain disclosures are given to, and consents obtained from, users in the European Economic Area (EEA) regarding the use of device identifiers and personal data. This policy reflects the requirements of the EU ePrivacy Directive and the General Data Protection Regulation (GDPR). When seeking consent, you must identify each ad network in your mediation chain that may collect, receive, or use personal data and provide information about each network's use. Google currently is unable to pass the user's consent choice to such networks automatically.

Review Meta's guidance for information about GDPR and Meta advertising.

US states privacy laws

U.S. states privacy laws require giving users the right to opt out of the "sale" of their "personal information" (as the law defines those terms), with the opt-out offered via a prominent "Do Not Sell My Personal Information" link on the "selling" party's homepage. The U.S. states privacy laws compliance guide offers the ability to enable restricted data processing for Google ad serving, but Google is unable to apply this setting to each ad network in your mediation chain. Therefore, you must identify each ad network in your mediation chain that may participate in the sale of personal information and follow guidance from each of those networks to ensure compliance.

For users in California, review Meta's data processing options.

Step 5: Add required code

Android

No additional code required for Meta Audience Network integration.

iOS

SKAdNetwork integration

Follow Meta Audience Network's documentation to add the SKAdNetwork identifiers to your project's Info.plist file.

Advertising tracking enabled

If you are building for iOS 14 or higher, check Meta Audience Network's instructions on how to set their Advertising Tracking Flag.

Step 6: Test your implementation

Activer les annonces tests

Veillez à enregistrer votre appareil de test pour AdMob et à activer le mode test dans l' Meta Audience Network UI.

Valider les annonces tests

Pour vérifier que vous recevez des annonces tests deMeta Audience Network, activez le test d'une source d'annonce unique dans l'inspecteur d'annonces à l'aide de Meta Audience Network (Bidding) sources d'annonces.

Optional steps

Caching on Android 9

Android

Starting with Android 9 (API level 28), cleartext support is disabled by default, which will affect the functionality of media caching of the Meta Audience Network SDK and could affect user experience and ads revenue. Follow Meta's documentation to update the network security configuration in your app.

iOS

Not applicable for iOS integrations.

Error codes

If the adapter fails to receive an ad from Audience Network, you can check the underlying error from the ad response using ResponseInfo under the following classes:

Android

com.google.ads.mediation.facebook.FacebookAdapter
com.google.ads.mediation.facebook.FacebookMediationAdapter

iOS

GADMAdapterFacebook
GADMediationAdapterFacebook

Here are the codes and accompanying messages thrown by the Meta Audience Network adapter when an ad fails to load:

Android

Error code Reason
101 Invalid server parameters (e.g. missing Placement ID).
102 The requested ad size does not match a Meta Audience Network supported banner size.
103 The publisher must request ads with an Activity context.
104 The Meta Audience Network SDK failed to initialize.
105 The publisher did not request for Unified native ads.
106 The native ad loaded is a different object than the one expected.
107 The Context object used is invalid.
108 The loaded ad is missing the required native ad assets.
109 Failed to create a native ad from the bid payload.
110 The Meta Audience Network SDK failed to present their interstitial/rewarded ad.
111 Exception thrown when creating a Meta Audience Network AdView object.
1000-9999 The Meta Audience Network returned an SDK-specific error. See Meta Audience Network's documentation for more details.

iOS

Error code Reason
101 Invalid server parameters (e.g. missing Placement ID).
102 The requested ad size does not match a Meta Audience Network supported banner size.
103 The Meta Audience Network ad object failed to initialize.
104 The Meta Audience Network SDK failed to present their interstitial/rewarded ad.
105 Root view controller of the banner ad is nil.
106 The Meta Audience Network SDK failed to initialize.
1000-9999 The Meta Audience Network returned an SDK-specific error. See Meta Audience Network's documentation for more details.

Meta Audience Network Flutter Mediation Adapter Changelog

1.0.1

  • Added dart class to allow correct compatibility analysis with host platforms
  • Verified compatibility with Meta Android adapter version 6.17.0.0
  • Verified compatibility with Meta iOS adapter version 6.15.0.0
  • Built and tested with the Google Mobile Ads Flutter Plugin version 5.1.0.

1.0.0

  • Initial release.
  • Verified compatibility with Meta Android adapter version 6.17.0.0
  • Verified compatibility with Meta iOS adapter version 6.15.0.0
  • Built and tested with the Google Mobile Ads Flutter Plugin version 5.0.0.