Adsense Crawler May Not Like GDPR Cookie-Walls

Depending on your cookie-wall implementation, AdSense might stop displaying ads if ad-code can not be found.

1415 views
d

By. Jacob

Edited: 2019-11-21 19:35

GDPR, AdSense ads.

Back when I created the Consent dialog on Beamtic, Google's own documentation on the subject was very poor (it has since improved), and they had no official, easy, way to deal with obtaining consent for GDPR.

Recently, I discovered an issue that prevented ads from displaying correctly.

Issues like these can be very hard to debug, because there is no error message in your Adsense dashboard indicating what the problem is. They could at least post a message saying that the crawler is unable to find the ad-code, or that ads is not showing for a particular URL.

Developer tools in Chrome also does not show any error message in the console, and the AdSense toolbar is also of no help.

Anyway, the most likely cause was my cookie consent mechanism. I basically had a consent dialog that would remove ad-code from my pages if the user had not consented to cookies. My guess is that this caused the problem.

I was detecting the Adsense crawler via user-agent string, and only showing ads to users who consented and Google's own crawlers (since crawlers can not consent). The problem is, I think, Google will not always identify itself properly, and hence it might not find the ad-code on my pages.

Decreasing revenue with AdSense

A few months down the road, there was one major problem. I was still slowly loosing revenue after the implementation. Occasionally in huge percentage chunks. I was busy with 3. Semester of my education, and did not have time to debug.

I did notice at some point, ads not showing on a few pages. But, I was able to get them to show after hitting refresh a few times – so I did not think this was the problem (at the time).

Sometimes, revenue would also increase compared to the last month, which further added to the complexity in debugging the issue. I thought that I simply had a bad month.

Finally, this January, I lost as much as 70%. I realized, clearly something must be wrong with my consent mechanism.

It was then I noticed, testing in a Chrome incognito Window, ads not showing for most new articles. No matter how much I hid refresh.

InAppBrowsing is the enemy

Another problem I noticed has to do with InAppBrowsing (I think it's called). When you share content on social media, such as Facebook and Twitter, and a user visits a link you posted, the link will be opened inside a "in-app" browser window.

On Facebook Mobile Browser, there is a bug that prevents the browser from accepting cookies properly, which means that it does not remember consent. Possibly, the cause for this is that I am sending a AJAX request from JavaScript to a PHP script (on same domain name), which then sets the cookie. I am not 100% sure this is the problem, but it is my best guess. I will have to test what happens if I set the cookie from JavaScript instead.

Long story short. Facebook and Twitter simply need to stop using InAppBrowsing if they can not get it right.

I have not yet tested Twitters in-app browser, to see if cookies are working correctly. BUT, point is, there are all sorts of UX problems with these browsers as well, so there are really no reason for them to exist.

As a user, something that has frustrated me a lot, is that you can not change the URL (or even see the full URL). So.. Please stop using InAppBrowsing if you work for social media and you read this.

Why ads stopped showing

I am guessing the AdSense crawler does not always identify itself when visiting pages, and this caused ad-code not to be properly inserted into pages (depending on user-agent). Some older pages was still displaying ads, since they had already been crawled.

Google would also have to crawl my pages from different locations, including from within the EU, since the consent dialog is only shown to EU users (based on Maxminds GEO-location database).

There has been some talk about this online in webmaster circles. Displaying different content to crawlers from what you show to users, is not allowed according to the AdSense terms. So we also have to be careful what we do.

To detect something like this, obviously Google needs to also visit your page anonymously at times.

I am not sure what I did was allowed, hence why I also asked John about it on Twitter back in June:

But, it was the best solution I could think of at the time, and I can still see some uses for hiding ad-code for specific pages. For example, on pages such as About, Contact and Privacy Policy.

Conclusion

Removing ad-code entirely from the HTML seems like a bad idea in most cases, as it might prevent Google's crawlers from finding the code.

I did originally anticipate that this could happen, but I thought user-agent sniffing could solve the problem. However, it seems that did not work very well for me.

Instead, using JavaScript, you can now use pauseAdRequests=1 to temporarily pause loading of ads, and then later call pauseAdRequests=0 when the user clicks a consent button. The implementation is actually very easy.

Somewhere in your head, place a script with this code:

(adsbygoogle = window.adsbygoogle || []).pauseAdRequests = 1; // Pause loading of ads

Then, call a loadAds() function when a consent button is clicked:

function loadAds() {
  (adsbygoogle = window.adsbygoogle || []).pauseAdRequests = 0; // Resumes loading ads (un-pause)
}

This will still need to be combined with a server-sided script to record the consent, and to place a cookie on the users device, which will remember their choice. You can even make it show non-personalized ads, though I see little reason to do this personally.

Not including ad code in the HTML can still be useful for specific pages, such as about and Privacy Policy.

Links

  1. Ads personalization settings in Google’s publisher ad tags - google.com

Tell us what you think:

  1. Google is now forcing AdSense publishers to use a certified CMP whether they want it or not.
  2. Handing cookies just got more difficult. Implied consent is dead, and still no browser-level consent, but IAB Europe is working on a industry supported standardized solution.
  3. To reach compliance with GDPR while using Adense on out sites, we need to disclose our ad providers and obtain consent from users.
  4. How I am using MaxMinds GeoIP databases to become GDPR/CCPA compliant.

More in: GDPR