Integracja Yahoo z zapośredniczeniem

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

Supported integrations and ad formats

The Ad Manager mediation adapter for Yahoo has the following capabilities:

Integration
Bidding
Waterfall
Formats
Banner
Interstitial
Rewarded
Native

Requirements

  • iOS deployment target of 12.0 or higher

Step 1: Set up configurations in Yahoo UI

Log in to Yahoo's SSP. Under Applications and Sites, click the + button then Application.

Fill out the form and click Save and Add Placement to create your app.

Once you've created an app, you will need to create a Placement. Select a Placement Type, fill out the form, and click Save & Monetize.

Take note of your Placement ID.

You will need to add an Ad Source to your placement. On the next form, select Yahoo SSP as an Ad Source and fill out the form with the required information. Once you've completed the form, click Save.

Finally, drag the Ad Source that you just created under the Waterfall Ad Sources table to add it to your placement.

Take note of the Site ID.

Turn on test mode

Yahoo ads can be tested by creating a Test Ad Source and adding it into your placement's Waterfall Ad Sources. Navigate to your Placement ID's settings, click the Add button and select Test Ad Source.

Once you've created the Ad Source, drag it into your placement's Waterfall Ad Sources.

That's it! You now have a working mediation integration with Yahoo.

Step 2: Set up Yahoo demand in Ad Manager UI

Konfigurowanie ustawień zapośredniczenia dla jednostki reklamowej

Zaloguj się na konto Ad Managera.

Kliknij Wyświetlanie > Grupy zysku i kliknij przycisk Nowa grupa zysku.

Wpisz niepowtarzalną nazwę grupy zysku, ustaw Stan na Aktywna, wybierz Format reklamy, a jako Typ zasobów reklamowych wybierz Aplikacja mobilna. W sekcji Kierowanie > Zasoby reklamowe wybierz jednostkę reklamową w sekcjach Zasoby reklamowe i Aplikacja mobilna, do której chcesz dodać zapośredniczenie.

Następnie kliknij przycisk Dodaj partnera zysku.

Jeśli masz już partnera zysku w przypadku usługi Yahoo - App & Display , możesz go wybrać. W przeciwnym razie kliknij Utwórz nowego partnera zysku.

Jako Sieć reklamowa wybierz Yahoo - App & Display , wpisz niepowtarzalną nazwę i włącz Zapośredniczenie.

Po wybraniu Partnera zysku wybierz Zapośredniczenie mobilne SDK jako typ integracji, iOS jako platformę i Aktywne jako stan. WpiszPlacement ID and Site ID uzyskane w poprzedniej sekcji. Następnie wpisz domyślną wartość CPM.

Gdy skończysz, u dołu strony kliknij Zapisz.

Add Yahoo to GDPR and US state regulations ad partners list

Wykonaj czynności opisane w sekcji Ustawienia RODO i Ustawienia amerykańskich przepisów stanowych , aby dodać Yahoo do listy partnerów reklamowych zgodnych z RODO i amerykańskimi przepisami stanowymi w Ad Manager UI.

Step 3: Import the Yahoo Mobile SDK and adapter

Add the following line to your project's Podfile:

pod 'GoogleMobileAdsMediationYahoo'

From the command line run:

pod install --repo-update

Step 4: Implement privacy settings on Yahoo SDK

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.

The following sample code shows how to pass consent information to the Yahoo Mobile SDK. If you choose to call this method, it is recommended that you do so prior to requesting ads through the Google Mobile Ads SDK.

Swift

import YASAds
import YASCcpaConsent

// ...
let ccpaConsent = YASCcpaConsent(consentString: "<CCPA CONSENT>")
YASAds.sharedInstance.add(ccpaConsent)

Objective-C

#import <YASAds.h>
#import <YASCcpaConsent.h>

// ...
YASCcpaConsent *ccpaConsent = [[YASCcpaConsent alloc] initWithConsentString: @"<CCPA CONSENT>"];
[YASAds.sharedInstance addConsent: ccpaConsent];

See Publisher Privacy Settings for more details and the values that can be provided in the method.

Step 5: Add required code

No additional code required for Yahoo integration.

Step 6: Test your implementation

Włącz reklamy testowe

Zarejestruj urządzenie testowe na potrzeby Ad Manager i włącz tryb testowy w Yahoo - App & Display interfejsie użytkownika.

Weryfikacja reklam testowych

Aby sprawdzić, czy otrzymujesz reklamy testowe z witryny Yahoo - App & Display , włącz w inspektorze reklam testowanie pojedynczego źródła reklam, korzystając z Yahoo (Waterfall) źródeł reklam.

Optional steps

Using native ads

Ad rendering

The Yahoo adapter returns its native ads as GADNativeAd objects. It populates the following fields for a GADNativeAd.

Field Populated by Yahoo adapter
Headline
Image
Body
App icon
Call to action
Advertiser Name
Star rating
Store
Price

Yahoo iOS Mediation Adapter Changelog

Next Version

  • Now requires Google Mobile Ads SDK version 10.4.0 or higher.
  • Replaced the deprecated childDirectedTreatment method with GADMobileAds.sharedInstance.requestConfiguration.tagForChildDirectedTreatment.

Version 1.4.0.0

  • Rebranded Verizon Media adapter to "Yahoo" adapter.
  • Verified compatibility with Yahoo Mobile SDK version 1.4.0.
  • Updated the adapter to use the didRewardUser API.
  • Removed support of the armv7 architecture.
  • Removed use of deprecated gender, birthday and location mediation APIs.
  • Now requires a minimum deployment target of iOS 11.0.
  • Now requires Google Mobile Ads SDK version 10.0.0 or higher.

Built and tested with:

  • Google Mobile Ads SDK version 10.3.0.
  • Yahoo Mobile SDK version 1.4.0