WebView API for Ads を統合する

WebView API for Ads を使用すると、WKWebViewのタグでアプリシグナルを利用できるため、コンテンツを提供したパブリッシャーの収益化を改善し、スパムから広告主を保護できます。

仕組み

Google Mobile Ads SDK との通信は、次のいずれかによってトリガーされた広告イベントにのみ応答して行われます。

SDK は、これらの広告イベントをリッスンするために、登録されたWKWebView にメッセージ ハンドラを追加します。この仕組みについて詳しくは、テストページのソースコードをご覧ください。

前提条件

  • Google Mobile Ads SDK バージョン 9.6.0 以降。
  • Info.plist ファイルを更新して、次のキーと文字列値を設定します。これにより、Google Mobile Ads SDK が GADApplicationIdentifier 値に対して行うチェックをバイパスできます。このチェックは、ウェブビューの外部に広告を実装するデベロッパーに適用されます。この手順を行わずに GADApplicationIdentifier を指定しないと、アプリの起動時に Google Mobile Ads SDK により GADInvalidInitializationException がスローされます。

    <!-- Indicate Google Mobile Ads SDK usage is only for web view APIs for ads -->
    <key>GADIntegrationManager</key>
    <string>webview</string>
    

ウェブビューを登録する

メインスレッドで register(_:) を呼び出して、各 WKWebView インスタンス内の AdSense コードまたは Google パブリッシャー タグの JavaScript ハンドラに接続を確立します。これは、ビュー コントローラの viewDidLoad メソッドなど、できるだけ早い段階で行う必要があります。

Swift

import WebKit

class ViewController: UIViewController {

  var webView: WKWebView!

  override func viewDidLoad() {
    super.viewDidLoad()

    // Initialize a WKWebViewConfiguration object.
    let webViewConfiguration = WKWebViewConfiguration()
    // Let HTML videos with a "playsinline" attribute play inline.
    webViewConfiguration.allowsInlineMediaPlayback = true
    // Let HTML videos with an "autoplay" attribute play automatically.
    webViewConfiguration.mediaTypesRequiringUserActionForPlayback = []

    // Initialize the WKWebView with your WKWebViewConfiguration object.
    webView = WKWebView(frame: view.frame, configuration: webViewConfiguration)
    view.addSubview(webView)

    // Register the web view.
    GADMobileAds.sharedInstance().register(webView)
  }
}

Objective-C

@import WebKit;

#import "ViewController.h"

@interface ViewController ()

@property(nonatomic, strong) WKWebView *webView;

@end

@implementation ViewController

- (void)viewDidLoad {
  [super viewDidLoad];

  // Initialize a WKWebViewConfiguration object.
  WKWebViewConfiguration *webViewConfiguration = [[WKWebViewConfiguration alloc] init];
  // Let HTML videos with a "playsinline" attribute play inline.
  webViewConfiguration.allowsInlineMediaPlayback = YES;
  // Let HTML videos with an "autoplay" attribute play automatically.
  webViewConfiguration.mediaTypesRequiringUserActionForPlayback = WKAudiovisualMediaTypeNone;

  // Initialize the WKWebView with your WKWebViewConfiguration object.
  self.webView = [[WKWebView alloc] initWithFrame:self.view.frame configuration:webViewConfiguration];
  [self.view addSubview:self.webView];

  // Register the web view.
  [GADMobileAds.sharedInstance registerWebView:self.webView];
}

統合をテストする

独自の URL を使用する前に、次の URL を読み込んで統合をテストすることをおすすめします。

https://webview-api-for-ads-test.glitch.me#api-for-ads-tests

次の条件が適用されると、テスト URL に緑色のステータスバーが表示され、統合が成功したことを示します。

  • WKWebView Google Mobile Ads SDK に接続されている

次のステップ

  • WKWebViewで同意を取得します。Google 広告の WebView API は、IAB TCF v2.0 または IAB CCPA コンプライアンス フレームワークを使用してモバイルアプリのコンテキストで収集された同意を、ウェブビューのタグに伝播しません。収益化対象のWKWebView とそれに関連するウェブ コンテンツの両方の所有者として、単一の同意フローを導入する場合は、同意管理プラットフォームを使用して WKWebView コンテキストで同意を取得します。