Skip to content
Latest commit b4693b0 Apr 21, 2016 @jridgewell jridgewell Update link
..
Failed to load latest commit information.
google Ramp up GLADE traffic fraction to 1%. Apr 6, 2016
README.md Some changes to help building ads. (#2908) Apr 19, 2016
_config.js Add support for sovrn ad network (#2883) Apr 15, 2016
a9.js Add a feature that checks for 3p embeds that only expected arguments … Dec 21, 2015
a9.md Amending indentation or HTML properties Oct 12, 2015
adblade.js Access document through appropriate window variable Mar 31, 2016
adblade.md add adblade and industrybrains implementations Mar 17, 2016
adform.js Added more valid Adform hosts. Feb 29, 2016
adform.md Added more valid Adform hosts. Feb 29, 2016
adman.js request for integrating adman ad-server Apr 7, 2016
adman.md request for integrating adman ad-server Apr 7, 2016
adreactor.js Add a feature that checks for 3p embeds that only expected arguments … Dec 21, 2015
adreactor.md Amending indentation or HTML properties Oct 12, 2015
adstir.js Add support for AdStir ads (#2872) Apr 14, 2016
adstir.md Add support for AdStir ads (#2872) Apr 14, 2016
adtech.js switch `var` to `let` or `const` Nov 10, 2015
adtech.md Accept adtech ads to be loaded from other domains than adserver.adtec… Oct 26, 2015
aduptech.js Add support for Ad Up Technology ads Apr 8, 2016
aduptech.md Add support for Ad Up Technology ads Apr 8, 2016
criteo.js Enable asynchronous display for Criteo amp-ad Mar 15, 2016
criteo.md Add Criteo support to amp-ad Mar 2, 2016
dotandads.js added implementation for dotandads type for amp-ad Feb 3, 2016
dotandads.md added implementation for dotandads type for amp-ad Feb 3, 2016
flite.js syntax fix for mixing dep Mar 9, 2016
flite.md Add Flite to amp-ads feature Feb 19, 2016
gmossp.js GMOSSP amp-ad support (#2814) Apr 7, 2016
gmossp.md GMOSSP amp-ad support (#2814) Apr 7, 2016
imobile.js i-mobile 3p amp-ad support Mar 11, 2016
imobile.md i-mobile 3p amp-ad support Mar 11, 2016
improvedigital.js Improve Digital AMP integration Mar 25, 2016
improvedigital.md Improve Digital AMP integration Mar 25, 2016
industrybrains.md add adblade and industrybrains implementations Mar 17, 2016
integration-guide.md Update link Apr 21, 2016
mediaimpact.js Access document through appropriate window variable Mar 31, 2016
mediaimpact.md advertiser integration "mediaimpact" Feb 18, 2016
openadstream.js Remove encoding which is breaking forward slash `/` in URL constructions Feb 25, 2016
openadstream.md Update openadstream.md Mar 30, 2016
openx.js Access document through appropriate window variable Mar 31, 2016
openx.md openx amp ad implementation Mar 21, 2016
plista.js Enforce Dangling Commas Feb 26, 2016
plista.md #2324 plista is a content-recommendation platform and it supports res… Apr 18, 2016
pubmatic.js Pubmatic Ad plugin (#2654) Apr 11, 2016
pubmatic.md Pubmatic Ad plugin (#2654) Apr 11, 2016
revcontent.js Revcontent AdNetwork Service 1.0 Feb 15, 2016
revcontent.md Revcontent AdNetwork Service 1.0 Feb 15, 2016
rubicon.js rubicon adapter update Mar 30, 2016
rubicon.md adding rubicon adapter Mar 9, 2016
smartadserver.js Enforce Dangling Commas Feb 26, 2016
smartadserver.md Adding Smart AdServer support Feb 5, 2016
sortable.js sortable amp ad implementation Mar 25, 2016
sortable.md sortable amp ad implementation Mar 25, 2016
sovrn.js Add support for sovrn ad network (#2883) Apr 15, 2016
sovrn.md Add support for sovrn ad network (#2883) Apr 15, 2016
taboola.js Provide an initial intersection change record to ads. (#2901) Apr 13, 2016
taboola.md implement taboola ad-type Feb 2, 2016
teads.js Implement Teads on Google AMP Ads network Feb 29, 2016
teads.md Implement Teads on Google AMP Ads network Feb 29, 2016
triplelift.js Adding TripleLift to amp-ads Mar 1, 2016
triplelift.md Adding TripleLift to amp-ads Mar 1, 2016
webediads.js Webediads - "amp-ad" submission Mar 18, 2016
webediads.md Webediads - "amp-ad" submission Mar 18, 2016
weborama.js amp-ad type weborama-display (#2833) Apr 12, 2016
weborama.md amp-ad type weborama-display (#2833) Apr 12, 2016
yieldbot.js feature(amp-ad): yieldbot ad type (#2850) Apr 12, 2016
yieldbot.md feature(amp-ad): yieldbot ad type (#2850) Apr 12, 2016
yieldmo.js Adding yieldmo ad network to amp-ad. Feb 8, 2016
yieldmo.md Adding yieldmo ad network to amp-ad. Feb 8, 2016

README.md

Integrating ad networks into AMP

See also our ad integration guidelines and 3rd party ads integration guidelines

Overview

Ads are just another external resource and must play within the same constraints placed on all resources in AMP. We aim to support a large subset of existing ads with little or no changes to how the integrations work. Our long term goal is to further improve the impact of ads on the user experience through changes across the entire vertical client side stack.

Constraints

A summary of constraints placed on external resources such as ads in AMP HTML:

  • Because AMPs are served on HTTPS and ads cannot be proxied, ads must be served over HTTPS.
  • The size of an ad unit must be static. It must be knowable without fetching the ad and it cannot change at runtime except through iframe resizing https://github.com/ampproject/amphtml/issues/728.
  • If placing the ad requires running JavaScript (assumed to be true for 100% of ads served through networks), the ad must be placed on an origin different from the AMP document itself. Reasons include:
    • Improved security.
    • Takes synchronous HTTP requests made by the ad out of the critical rendering path of the primary page.
    • Allows browsers to run the ad in a different process from the primary page (even better security and prevents JS inside the ad to block the main page UI thread).
    • Prevents ads doing less than optimal things to measure user behavior and other interference with the primary page.
  • The AMP runtime may at any moment decide that there are too many iframes on a page and that memory is low. In that case it would unload ads that were previously loaded and are no longer visible. It may later load new ads in the same slot if the user scrolls them back into view.
  • The AMP runtime may decide to set an ad that is currently not visible to display: none to reduce browser layout and compositing cost.

The iframe sandbox

The ad itself is hosted within a document that has an origin different from the primary page.

Information available to the ad

We will provide the following information to the ad:

  • window.context.referrer contains the origin of the referrer value of the primary document if available.
  • document.referrer will typically contain the URL of the primary document. This may change in the future (See next value for a more reliable method).
  • window.context.location contains the sanitized Location object of the primary document. This object contains keys like href, origin and other keys common for Location objects. In browsers that support location.ancestorOrigins you can trust that the origin of the location is actually correct (So rogue pages cannot claim they represent an origin they do not actually represent).
  • window.context.canonicalUrl contains the canonical URL of the primary document as defined by its link rel=canonical tag.
  • window.context.clientId contains a unique id that is persistently the same for a given user and AMP origin site in their current browser until local data is deleted or the value expires (expiration is currently set to 1 year).
    • Ad networks must register their cid scope in the variable clientIdScope in _config.js.
    • Only available on pages that load amp-analytics. The clientId will be null if amp-analytics was not loaded on the given page.
  • window.context.pageViewId contains a relatively low entropy id that is the same for all ads shown on a page.
  • ad viewability
  • window.context.startTime contains the time at which processing of the amp-ad element started.

More information can be provided in a similar fashion if needed (Please file an issue).

Methods available to the ad.

  • window.context.noContentAvailable is a function that the ad system can call if the ad slot was not filled. The container page will then react by showing fallback content or collapsing the ad if allowed by AMP resizing rules.
  • window.context.reportRenderedEntityIdentifier MUST be called by ads, when they know information about which creative was rendered into a particular ad frame and should contain information to allow identifying the creative. Consider including a small string identifying the ad network. This is used by AMP for reporting purposes. The value MUST NOT contain user data or personal identifiable information.

Exceptions to iframe sandbox methods and information

Depending on the ad server / provider some methods of rendering ads involve a second iframe inside the AMP iframe. In these cases, the iframe sandbox methods and information will be unavailable to the ad. We are working on a creative level API that will enable this information to be accessible in such iframed cases and this README will be updated when that is available. Refer to the documentation for the relevant ad servers / providers (e.g., doubleclick.md) for more details on how to handle such cases.

Ad viewability

Position in viewport

Ads can call the special API window.context.observeIntersection(changesCallback) to receive IntersectionObserver style change records of the ad's intersection with the parent viewport.

The API allows specifying a callback that fires with change records when AMP observes that an ad becomes visible and then while it is visible, changes are reported as they happen.

When a listener is registered, it will be called 2x in short order. Once with the position of the ad when its iframe was created and then again with the current position.

Example usage:

  window.context.observeIntersection(function(changes) {
    changes.forEach(function(c) {
      console.info('Height of intersection', c.intersectionRect.height);
    });
  });

window.context.observeIntersection returns a function which when called will stop listening for intersection messages.

Example usage:

  var unlisten = window.context.observeIntersection(function(changes) {
    changes.forEach(function(c) {
      console.info('Height of intersection', c.intersectionRect.height);
    });
  });

  // condition to stop listening to intersection messages.
  unlisten();
Initial position

The value window.context.initialIntersection contains the initial intersection record at the time the iframe was created.

Page visibility

AMP documents may be practically invisible without the visibility being reflected by the page visibility API. This is primarily the case when a document is swiped away or being prerendered.

Whether a document is actually being visible can be queried using:

window.context.hidden which is true if the page is not visible as per page visibility API or because the AMP viewer currently does not show it.

Additionally one can observe the amp:visibilitychange on the window object to be notified about changes in visibility.

Ad resizing

Ads can call the special API window.context.requestResize(width, height) to send a resize request.

Once the request is processed the AMP runtime will try to accommodate this request as soon as possible, but it will take into account where the reader is currently reading, whether the scrolling is ongoing and any other UX or performance factors.

Ads can observe whether resize request were successful using the window.context.onResizeSuccess and window.context.onResizeDenied methods.

Example

var unlisten = window.context.onResizeSuccess(function(requestedHeight, requestedWidth) {
  // Hide any overflow elements that were shown.
  // The requestedHeight and requestedWidth arguments may be used to check which size change the request corresponds to.
});

var unlisten = window.context.onResizeDenied(function(requestedHeight, requestedWidth) {
  // Show the overflow element and send a window.context.requestResize(width, height) when the overflow element is clicked.
  // You may use the requestedHeight and requestedWidth to check which size change the request corresponds to.
});

Here are some factors that affect whether the resize will be executed:

  • Whether the resize is triggered by the user action;
  • Whether the resize is requested for a currently active ad;
  • Whether the resize is requested for an ad below the viewport or above the viewport.

Optimizing ad performance

JS reuse across iframes

To allow ads to bundle HTTP requests across multiple ad units on the same page the object window.context.master will contain the window object of the iframe being elected master iframe for the current page. The window.context.isMaster property is true when the current frame is the master frame.

The computeInMasterFrame function is designed to make it easy to perform a task only in the master frame and provide the result to all frames. It is also available to custom ad iframes as window.context.computeInMasterFrame. See 3p.js for function signature.

Preconnect and prefetch

Add the JS URLs that an ad always fetches or always connects to (if you know the origin but not the path) to _config.js.

This triggers prefetch/preconnect when the ad is first seen, so that loads are faster when they come into view.

Ad markup

Ads are loaded using a the tag given the type of the ad network and name value pairs of configuration. This is an example for the A9 network:

  <amp-ad width=300 height=250
      type="a9"
      data-aax_size="300x250"
      data-aax_pubname="test123"
      data-aax_src="302">
  </amp-ad>

and another for DoubleClick:

  <amp-ad width=320 height=50
      type="doubleclick"
      json="{…}">
  </amp-ad>

For ad networks that support loading via a single script tag, this form is supported:

  <amp-ad width=300 height=250
      type="adtech"
      src="https://adserver.adtechus.com/addyn/3.0/5280.1/2274008/0/-1/ADTECH;size=300x250;key=plumber;alias=careerbear-ros-middle1;loc=300;;target=_blank;grp=27980912;misc=3767074">
  </amp-ad>

Note, that the network still needs to be whitelisted and provide a prefix to valid URLs. We may add similar support for ad networks that support loading via an iframe tag.

Technically the <amp-ad> tag loads an iframe to a generic bootstrap URL that knows how to render the ad given the parameters to the tag.

1st party cookies

Access to a publishers 1st party cookies may be achieved through a custom ad bootstrap

file. See "Running ads from a custom domain" in the ad documentation for details.

If the publisher would like to add custom JavaScript in the remote.html file that wants to read or write to the publisher owned cookies, then the publisher needs to ensure that the remote.html file is hosted on a sub-domain of the publisher URL. e.g. if the publisher hosts a webpage on https://nytimes.com, then the remote file should be hosted on something similar to https://sub-domain.nytimes.com for the custom JavaScript to have the abiity to read or write cookies for nytimes.com.

Something went wrong with that request. Please try again.