Overview

This integration guide provides a detailed explanation of the implementation of AMP ads, Video units, Consent Management (CMP), and User Sync on a website developed exclusively with AMP.

AMP Ads

AMP pages can be monetized by displaying Ads through a specific AMP component: <amp-ad>. This component is a customizable ad extension to the AMP library delivering ads through Snigel's Bid-Push server side header-bidding and Google Ad Manager (GAM).

To have an optimized and effective ad setup on amp pages, a few code tags need to be implemented as outlined below.

Head Configuration

Prerequisites

Before adding the necessary scripts to use all the necessary AMP elements/components verify that your page is effectively an AMP page by verifying that contains an <html ⚡> or <html amp> element on top of the page:

<!DOCTYPE html>
<html amp>

Page Metadata

The following metadata tags are required for every AMP page:

<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Page Title</title>
<link rel="canonical">

Note

AMP components

The following AMP components need to be loaded in the page <head> to be able to display ads.

<script async src="https://cdn.ampproject.org/v0.js"></script>
<script async custom-element="amp-consent" src="https://cdn.ampproject.org/v0/amp-consent-0.1.js"></script>
<script async custom-element="amp-iframe" src="https://cdn.ampproject.org/v0/amp-iframe-0.1.js"></script>
<script async custom-element="amp-ad" src="https://cdn.ampproject.org/v0/amp-ad-0.1.js"></script>
<script async custom-element="amp-sticky-ad" src="https://cdn.ampproject.org/v0/amp-sticky-ad-1.0.js"></script>
<script async custom-element="amp-fx-flying-carpet" src="https://cdn.ampproject.org/v0/amp-fx-flying-carpet-0.1.js"></script>

Note

AMP Boilerplate Code

AMP HTML documents must contain the following AMP Boilerplate Code in the <head> tag.

<style amp-boilerplate>
  body {
    -webkit-animation: -amp-start 8s steps(1, end) 0s 1 normal both;
    -moz-animation: -amp-start 8s steps(1, end) 0s 1 normal both;
    -ms-animation: -amp-start 8s steps(1, end) 0s 1 normal both;
    animation: -amp-start 8s steps(1, end) 0s 1 normal both
  }
  @-webkit-keyframes -amp-start {
    from { visibility: hidden }
    to { visibility: visible }
  }
  @-moz-keyframes -amp-start {
    from { visibility: hidden }
    to { visibility: visible }
  }
  @-ms-keyframes -amp-start {
    from { visibility: hidden }
    to { visibility: visible }
  }
  @-o-keyframes -amp-start {
    from { visibility: hidden }
    to { visibility: visible }
  }
  @keyframes -amp-start {
    from { visibility: hidden }
    to { visibility: visible }
  }
</style>
<noscript>
  <style amp-boilerplate> body { -webkit-animation: none; -moz-animation: none; -ms-animation: none; animation: none } </style>
</noscript>

Or the compressed version:

<style amp-boilerplate>body{-webkit-animation:-amp-start 8s steps(1,end) 0s 1 normal both;-moz-animation:-amp-start 8s steps(1,end) 0s 1 normal both;-ms-animation:-amp-start 8s steps(1,end) 0s 1 normal both;animation:-amp-start 8s steps(1,end) 0s 1 normal both}@-webkit-keyframes -amp-start{from{visibility:hidden}to{visibility:visible}}@-moz-keyframes -amp-start{from{visibility:hidden}to{visibility:visible}}@-ms-keyframes -amp-start{from{visibility:hidden}to{visibility:visible}}@-o-keyframes -amp-start{from{visibility:hidden}to{visibility:visible}}@keyframes -amp-start{from{visibility:hidden}to{visibility:visible}}</style><noscript><style amp-boilerplate>body{-webkit-animation:none;-moz-animation:none;-ms-animation:none;animation:none}</style></noscript>

Body Configuration

Consent Management

If you are using AdConsent to manage user consent, there are additional elements required to be compliant with privacy laws.

It's highly recommended to use a CMP to assure your site is compliant with data regulation laws such as GDPR. With Snigel's AdConsent you are compliant in accordance with IAB Europe’s Transparency and Consent Framework (TCF).
Implementing a CMP in a publisher site that relies on ads to subsist will ultimately lead to better revenue in the areas where consent is needed.

To implement AdConsent, just add the following code on the top of the page <body>:

<amp-consent id="ampcmp" layout="nodisplay">
  <script type="application/json">
    {
      "consentInstanceId": "ampcmp-inst",
      "consentRequired": true,
      "promptUISrc": "https://cdn.snigelweb.com/adengine/**site.domain**/amp.html"
    }
  </script>
</amp-consent>

Note

User Sync

User sync helps advertisers to synchronize user information to deliver user specific ads which will ultimately increase revenue.

Implement User Sync with Consent Management

It is recommended to implement user sync together with consent management. Add the following tag to the page <body> after the CMP tag.

<div>
  <amp-iframe data-block-on-consent
    title="User Sync"
    width="1"
    height="1"
    sandbox="allow-scripts allow-same-origin"
    frameborder="0"
    src="https://cdn.snigelweb.com/adengine/**site.domain**/amp-sync-with-consent.html">
    <amp-img layout="fill" src="data:image/gif;base64,R0lGODlhAQABAIAAAP///wAAACH5BAEAAAAALAAAAAABAAEAAAICRAEAOw==" placeholder></amp-img>
  </amp-iframe>
</div>

Note

Implement User Sync without Consent Management

Add the following tag to the page <body>.

<div>
  <amp-iframe
    title="User Sync"
    width="1"
    height="1"
    sandbox="allow-scripts allow-same-origin"
    frameborder="0"
    src="https://cdn.snigelweb.com/adengine/**site.domain**/amp-sync.html">
    <amp-img layout="fill" src="data:image/gif;base64,R0lGODlhAQABAIAAAP///wAAACH5BAEAAAAALAAAAAABAAEAAAICRAEAOw==" placeholder></amp-img>
  </amp-iframe>
</div>

Note

Implement more than one User Sync module

There are exceptional cases where publishers want to implement AMP ad units from different vendors, each using their own user sync module. This way, each vendor can send requests to their bidders with different user ids.

To implement more than one User ID Sync module it is necessary to implement more than one <amp-iframe>. However, there is an important limitation regarding the use of <amp-iframe> in pages that use <amp-analytics>: ”AMP only allows a single iframe that is used for analytics and tracking purposes, per page".
For this reason, we present two solutions to implement more than one User Sync module in the same AMP page.

First solution

Set the width and height size of the iframe larger than 10px. By doing this, AMP will not consider this iframe for tracking or analytics purposes. Add the following tag to the page <body>:

<div style="visibility: hidden;">
  <amp-iframe data-block-on-consent
    title="User Sync"
    width="11"
    height="11"
    sandbox="allow-scripts allow-same-origin"
    frameborder="0"
    src="https://cdn.snigelweb.com/adengine/**site.domain**/amp-sync-with-consent.html">
    <amp-img layout="fill" src="data:image/gif;base64,R0lGODlhAQABAIAAAP///wAAACH5BAEAAAAALAAAAAABAAEAAAICRAEAOw==" placeholder></amp-img>
  </amp-iframe>
</div>

Note

Second solution

This solution is more complex. On the AMP page, you have to implement an <amp-iframe> that calls an HTML page page containing all the explicit code needed to call the /cookie_sync endpoint for our vendor and for the other vendors. However, there is an important detail: the origin of <amp-iframe> must not be equal to its container. Which means its source attribute (src) must have a different domain or you must add a subdomain to respect this rule. Add the following example tag to the page <body>:

<div>
  <amp-iframe
    title="User Sync"
    width="1"
    height="1"
    sandbox="allow-scripts allow-same-origin"
    frameborder="0"
    src="https://**sub.site.domain**/example-cookies-sync.html">
    <amp-img layout="fill" src="data:image/gif;base64,R0lGODlhAQABAIAAAP///wAAACH5BAEAAAAALAAAAAABAAEAAAICRAEAOw==" placeholder></amp-img>
  </amp-iframe>
</div>

Note

AMP Ad Unit

The page body needs to define <amp-ad> elements which will be filled with ads. They need to be placed where the ad should be displayed.
The <amp-ad> elements should reserve the maximum width and height of the displayed ad to prevent Cumulative Layout Shift (CLS). To reserve the proper space please consult your account manager to get the exact ad sizes.

For each ad on your page, create a tag like the following example.

<div>
  <amp-ad data-block-on-consent
    width="300"
    height="250"
    layout="fixed"
    type="doubleclick"
    data-slot="/01234567/domain_placement_amp"
    data-multi-size="300x50" data-multi-size-validation="false"
    data-enable-refresh="30"
    rtc-config='{"vendors": {"snigel": {"PLACEMENT_ID":"**domain-placement_amp**"}}}'
    json='{"targeting":{"_sn-amp":"true"}}'>
    <div overflow fallback>
      <p>No Ad to show</p>
    </div>
  </amp-ad>
</div>

Note

AMP Adhesive Ad Unit

AMP also supports other types of ads, like the Adhesive/Sticky Ads. This type of ad will stick to the bottom of the screen with a high viewability causing higher ad revenues.

Create a tag like the following example for an adhesive ad unit.

<amp-sticky-ad layout="nodisplay">
  <amp-ad data-block-on-consent
    width="320"
    height="100"
    layout="fixed"
    type="doubleclick"
    data-slot="/01234567/domain_placement_amp"
    data-multi-size="320x50" data-multi-size-validation="false"
    data-enable-refresh="30"
    rtc-config='{"vendors": {"snigel": {"PLACEMENT_ID":"**domain-placement_amp**"}}}'
    json='{"targeting":{"_sn-amp":"true"}}'>
    <div overflow fallback>
      <p>No Ad to show</p>
    </div>
  </amp-ad>
</amp-sticky-ad>

Note

AMP Video Unit

AMP also supports In-stream Video units. The implementation of Video units in AMP pages is similar to the AMP Ad unit since they share the same component: <amp-ad>.

This type of ad is known for increasing revenue.

Create a tag like the following example for an AMP video unit.

<amp-ad data-block-on-consent
  width="300"
  height="200"
  type="doubleclick"
  data-slot="/01234567/domain-placement_amp"
  json='{"targeting":{"sn_cv":"Video_URL"}}'>
</amp-ad>

Note

AMP Flying Carpet Ad Unit

AMP supports flying carpet ad units. A flying carpet is a component composed of a parent ad unit window and a child ad unit fixed in place in relation to the viewport. As the user scrolls up, the parent ad unit, which appears as a transparent window, comes into view and reveals a child ad section. The child ad unit stays in the same place, but the window that the user looks through moves up and down as they scroll. This type of component allows you to show ads with much greater heights than the space reserved for showing the ad.

Create a tag like the following example for an AMP video unit.

<div class="amp-flying-carpet-text-border" style="text-align: center;">Advertising</div>
<amp-fx-flying-carpet height="300px">
  <amp-ad data-block-on-consent
    width="300"
    height="600"
    type="doubleclick"
    layout="fixed"
    data-slot="/01234567/domain_placement_amp"
    data-multi-size="160 x 600" data-multi-size-validation="false"
    data-enable-refresh="30"
    rtc-config='{"vendors": {"snigel": {"PLACEMENT_ID": "**domain-placement_amp**"}}}'
    json='{"targeting":{"_sn-amp":"true"}}'>
    <div overflow></div>
  </amp-ad>
</amp-fx-flying-carpet>

Note

Related links

AdConsent
Accelerated Mobile Pages
<amp-ad> Component
<amp-sticky-ad> Component
<amp-iframe> Component
<amp-fx-flying-carpet> Component
AMP Boilerplate Code
Cumulative Layout Shift (CLS)