CINXE.COM

How does the BBC use cookies for commercial purposes (outside the UK)? - Using the BBC

<!DOCTYPE html> <html lang="en" class="no-js b-header--white--black"> <head><script type="text/javascript" src="/_static/js/bundle-playback.js?v=HxkREWBo" charset="utf-8"></script> <script type="text/javascript" src="/_static/js/wombat.js?v=txqj7nKC" charset="utf-8"></script> <script>window.RufflePlayer=window.RufflePlayer||{};window.RufflePlayer.config={"autoplay":"on","unmuteOverlay":"hidden"};</script> <script type="text/javascript" src="/_static/js/ruffle/ruffle.js"></script> <script type="text/javascript"> __wm.init("https://web.archive.org/web"); __wm.wombat("https://www.bbc.com/usingthebbc/cookies/how-does-the-bbc-use-cookies-for-advertising/","20220311211218","https://web.archive.org/","web","/_static/", "1647033138"); </script> <link rel="stylesheet" type="text/css" href="/_static/css/banner-styles.css?v=S1zqJCYt" /> <link rel="stylesheet" type="text/css" href="/_static/css/iconochive.css?v=3PDvdIFv" /> <!-- End Wayback Rewrite JS Include --> <!-- Orbit: 3.0.0-1870.883507a1 --> <!-- Environment: live --> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <style> :root { --bbc-font: ReithSans, Arial, Helvetica, freesans, sans-serif; --bbc-font-legacy: Arial, Helvetica, freesans, sans-serif; } </style> <script nomodule type="text/javascript" src="https://web.archive.org/web/20220311211218js_/https://static.files.bbci.co.uk/orbit/1b6b61cd4d5f792da2216b606c5dfe73/js/polyfills.bundle.js" async></script> <link rel="stylesheet" href="https://web.archive.org/web/20220311211218cs_/https://static.files.bbci.co.uk/orbit/1b6b61cd4d5f792da2216b606c5dfe73/css/orb-ltr.min.css"> <script src="https://web.archive.org/web/20220311211218js_/https://static.files.bbci.co.uk/orbit/1b6b61cd4d5f792da2216b606c5dfe73/js/require.min.js"></script> <script> // nav-orbit-pollyfills // Promise polyfill from https://github.com/bramstein/promis (function(){'use strict';var f,g=[];function l(a){g.push(a);1==g.length&&f()}function m(){for(;g.length;)g[0](),g.shift()}f=function(){setTimeout(m)};function n(a){this.a=p;this.b=void 0;this.f=[];var b=this;try{a(function(a){q(b,a)},function(a){r(b,a)})}catch(c){r(b,c)}}var p=2;function t(a){return new n(function(b,c){c(a)})}function u(a){return new n(function(b){b(a)})}function q(a,b){if(a.a==p){if(b==a)throw new TypeError;var c=!1;try{var d=b&&b.then;if(null!=b&&"object"==typeof b&&"function"==typeof d){d.call(b,function(b){c||q(a,b);c=!0},function(b){c||r(a,b);c=!0});return}}catch(e){c||r(a,e);return}a.a=0;a.b=b;v(a)}} function r(a,b){if(a.a==p){if(b==a)throw new TypeError;a.a=1;a.b=b;v(a)}}function v(a){l(function(){if(a.a!=p)for(;a.f.length;){var b=a.f.shift(),c=b[0],d=b[1],e=b[2],b=b[3];try{0==a.a?"function"==typeof c?e(c.call(void 0,a.b)):e(a.b):1==a.a&&("function"==typeof d?e(d.call(void 0,a.b)):b(a.b))}catch(h){b(h)}}})}n.prototype.g=function(a){return this.c(void 0,a)};n.prototype.c=function(a,b){var c=this;return new n(function(d,e){c.f.push([a,b,d,e]);v(c)})}; function w(a){return new n(function(b,c){function d(c){return function(d){h[c]=d;e+=1;e==a.length&&b(h)}}var e=0,h=[];0==a.length&&b(h);for(var k=0;k<a.length;k+=1)u(a[k]).c(d(k),c)})}function x(a){return new n(function(b,c){for(var d=0;d<a.length;d+=1)u(a[d]).c(b,c)})};window.Promise||(window.Promise=n,window.Promise.resolve=u,window.Promise.reject=t,window.Promise.race=x,window.Promise.all=w,window.Promise.prototype.then=n.prototype.c,window.Promise.prototype["catch"]=n.prototype.g);}()); // Polyfill Event constructor for IE ref: ORBITEN-919 // see: https://stackoverflow.com/questions/26596123 (function () { if (typeof window.CustomEvent === "function") { return false; } function CustomEvent(event, params) { params = params || { bubbles: false, cancelable: false, detail: undefined }; var evt = document.createEvent('CustomEvent'); evt.initCustomEvent(event, params.bubbles, params.cancelable, params.detail); return evt; } CustomEvent.prototype = window.Event.prototype; window.Event = CustomEvent; })(); //Element.prototype.matches polyfill //from https://developer.mozilla.org/en-US/docs/Web/API/Element/matches#Polyfill if (!Element.prototype.matches) { Element.prototype.matches = Element.prototype.msMatchesSelector || Element.prototype.webkitMatchesSelector; } //NodeList.forEach Polyfill //from https://developer.mozilla.org/en-US/docs/Web/API/NodeList/forEach#Polyfill if (window.NodeList && !NodeList.prototype.forEach) { NodeList.prototype.forEach = Array.prototype.forEach; } // Object.assign polyfill from https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Object/assign#Polyfill if (typeof Object.assign != 'function') { // Must be writable: true, enumerable: false, configurable: true Object.defineProperty(Object, "assign", { value: function assign(target, varArgs) { // .length of function is 2 'use strict'; if (target == null) { // TypeError if undefined or null throw new TypeError('Cannot convert undefined or null to object'); } var to = Object(target); for (var index = 1; index < arguments.length; index++) { var nextSource = arguments[index]; if (nextSource != null) { // Skip over if undefined or null for (var nextKey in nextSource) { // Avoid bugs when hasOwnProperty is shadowed if (Object.prototype.hasOwnProperty.call(nextSource, nextKey)) { to[nextKey] = nextSource[nextKey]; } } } } return to; }, writable: true, configurable: true }); } // window.fetch polyfill https://github.com/github/fetch/blob/v0.11.0/fetch.js - chosen for IE9 compatibility if(typeof window.fetch !== 'function') { (function(self){"use strict";if(self.fetch){return}function normalizeName(name){if(typeof name!=="string"){name=String(name)}if(/[^a-z0-9\-#$%&'*+.\^_`|~]/i.test(name)){throw new TypeError("Invalid character in header field name")}return name.toLowerCase()}function normalizeValue(value){if(typeof value!=="string"){value=String(value)}return value}function Headers(headers){this.map={};if(headers instanceof Headers){headers.forEach(function(value,name){this.append(name,value)},this)}else if(headers){Object.getOwnPropertyNames(headers).forEach(function(name){this.append(name,headers[name])},this)}}Headers.prototype.append=function(name,value){name=normalizeName(name);value=normalizeValue(value);var list=this.map[name];if(!list){list=[];this.map[name]=list}list.push(value)};Headers.prototype["delete"]=function(name){delete this.map[normalizeName(name)]};Headers.prototype.get=function(name){var values=this.map[normalizeName(name)];return values?values[0]:null};Headers.prototype.getAll=function(name){return this.map[normalizeName(name)]||[]};Headers.prototype.has=function(name){return this.map.hasOwnProperty(normalizeName(name))};Headers.prototype.set=function(name,value){this.map[normalizeName(name)]=[normalizeValue(value)]};Headers.prototype.forEach=function(callback,thisArg){Object.getOwnPropertyNames(this.map).forEach(function(name){this.map[name].forEach(function(value){callback.call(thisArg,value,name,this)},this)},this)};function consumed(body){if(body.bodyUsed){return Promise.reject(new TypeError("Already read"))}body.bodyUsed=true}function fileReaderReady(reader){return new Promise(function(resolve,reject){reader.onload=function(){resolve(reader.result)};reader.onerror=function(){reject(reader.error)}})}function readBlobAsArrayBuffer(blob){var reader=new FileReader;reader.readAsArrayBuffer(blob);return fileReaderReady(reader)}function readBlobAsText(blob){var reader=new FileReader;reader.readAsText(blob);return fileReaderReady(reader)}var support={blob:"FileReader"in self&&"Blob"in self&&function(){try{new Blob;return true}catch(e){return false}}(),formData:"FormData"in self,arrayBuffer:"ArrayBuffer"in self};function Body(){this.bodyUsed=false;this._initBody=function(body){this._bodyInit=body;if(typeof body==="string"){this._bodyText=body}else if(support.blob&&Blob.prototype.isPrototypeOf(body)){this._bodyBlob=body}else if(support.formData&&FormData.prototype.isPrototypeOf(body)){this._bodyFormData=body}else if(!body){this._bodyText=""}else if(support.arrayBuffer&&ArrayBuffer.prototype.isPrototypeOf(body)){}else{throw new Error("unsupported BodyInit type")}if(!this.headers.get("content-type")){if(typeof body==="string"){this.headers.set("content-type","text/plain;charset=UTF-8")}else if(this._bodyBlob&&this._bodyBlob.type){this.headers.set("content-type",this._bodyBlob.type)}}};if(support.blob){this.blob=function(){var rejected=consumed(this);if(rejected){return rejected}if(this._bodyBlob){return Promise.resolve(this._bodyBlob)}else if(this._bodyFormData){throw new Error("could not read FormData body as blob")}else{return Promise.resolve(new Blob([this._bodyText]))}};this.arrayBuffer=function(){return this.blob().then(readBlobAsArrayBuffer)};this.text=function(){var rejected=consumed(this);if(rejected){return rejected}if(this._bodyBlob){return readBlobAsText(this._bodyBlob)}else if(this._bodyFormData){throw new Error("could not read FormData body as text")}else{return Promise.resolve(this._bodyText)}}}else{this.text=function(){var rejected=consumed(this);return rejected?rejected:Promise.resolve(this._bodyText)}}if(support.formData){this.formData=function(){return this.text().then(decode)}}this.json=function(){return this.text().then(JSON.parse)};return this}var methods=["DELETE","GET","HEAD","OPTIONS","POST","PUT"];function normalizeMethod(method){var upcased=method.toUpperCase();return methods.indexOf(upcased)>-1?upcased:method}function Request(input,options){options=options||{};var body=options.body;if(Request.prototype.isPrototypeOf(input)){if(input.bodyUsed){throw new TypeError("Already read")}this.url=input.url;this.credentials=input.credentials;if(!options.headers){this.headers=new Headers(input.headers)}this.method=input.method;this.mode=input.mode;if(!body){body=input._bodyInit;input.bodyUsed=true}}else{this.url=input}this.credentials=options.credentials||this.credentials||"omit";if(options.headers||!this.headers){this.headers=new Headers(options.headers)}this.method=normalizeMethod(options.method||this.method||"GET");this.mode=options.mode||this.mode||null;this.referrer=null;if((this.method==="GET"||this.method==="HEAD")&&body){throw new TypeError("Body not allowed for GET or HEAD requests")}this._initBody(body)}Request.prototype.clone=function(){return new Request(this)};function decode(body){var form=new FormData;body.trim().split("&").forEach(function(bytes){if(bytes){var split=bytes.split("=");var name=split.shift().replace(/\+/g," ");var value=split.join("=").replace(/\+/g," ");form.append(decodeURIComponent(name),decodeURIComponent(value))}});return form}function headers(xhr){var head=new Headers;var pairs=xhr.getAllResponseHeaders().trim().split("\n");pairs.forEach(function(header){var split=header.trim().split(":");var key=split.shift().trim();var value=split.join(":").trim();head.append(key,value)});return head}Body.call(Request.prototype);function Response(bodyInit,options){if(!options){options={}}this.type="default";this.status=options.status;this.ok=this.status>=200&&this.status<300;this.statusText=options.statusText;this.headers=options.headers instanceof Headers?options.headers:new Headers(options.headers);this.url=options.url||"";this._initBody(bodyInit)}Body.call(Response.prototype);Response.prototype.clone=function(){return new Response(this._bodyInit,{status:this.status,statusText:this.statusText,headers:new Headers(this.headers),url:this.url})};Response.error=function(){var response=new Response(null,{status:0,statusText:""});response.type="error";return response};var redirectStatuses=[301,302,303,307,308];Response.redirect=function(url,status){if(redirectStatuses.indexOf(status)===-1){throw new RangeError("Invalid status code")}return new Response(null,{status:status,headers:{location:url}})};self.Headers=Headers;self.Request=Request;self.Response=Response;self.fetch=function(input,init){return new Promise(function(resolve,reject){var request;if(Request.prototype.isPrototypeOf(input)&&!init){request=input}else{request=new Request(input,init)}var xhr=new XMLHttpRequest;function responseURL(){if("responseURL"in xhr){return xhr.responseURL}if(/^X-Request-URL:/m.test(xhr.getAllResponseHeaders())){return xhr.getResponseHeader("X-Request-URL")}return}xhr.onload=function(){var status=xhr.status===1223?204:xhr.status;if(status<100||status>599){reject(new TypeError("Network request failed"));return}var options={status:status,statusText:xhr.statusText,headers:headers(xhr),url:responseURL()};var body="response"in xhr?xhr.response:xhr.responseText;resolve(new Response(body,options))};xhr.onerror=function(){reject(new TypeError("Network request failed"))};xhr.open(request.method,request.url,true);if(request.credentials==="include"){xhr.withCredentials=true}if("responseType"in xhr&&support.blob){xhr.responseType="blob"}request.headers.forEach(function(value,name){xhr.setRequestHeader(name,value)});xhr.send(typeof request._bodyInit==="undefined"?null:request._bodyInit)})};self.fetch.polyfill=true})(typeof self!=="undefined"?self:this); } if (typeof window.CustomEvent !== 'function') { function CustomEvent(event, params) { params = params || { bubbles: false, cancelable: false, detail: null }; var evt = document.createEvent('CustomEvent'); evt.initCustomEvent(event, params.bubbles, params.cancelable, params.detail); return evt; } CustomEvent.prototype = window.Event.prototype; window.CustomEvent = CustomEvent; } </script> <script type="text/javascript"> window.orbitData = {}; var additionalPageProperties = {}; window.orbitData.userProfileUrl = "https://web.archive.org/web/20220311211218/https://www.bbc.co.uk/userprofile"; window.page = { name: '' || null, destination: '' || null, producer: '' || null, section: '' || null, site: '' || null, contentId: '' || null, contentType: '' || null, edition: '' || null, additionalProperties: additionalPageProperties }; window.page.language = 'en'; window.page.language = 'en'; window.page.modal = false; </script> <script type="text/javascript">!function(){var t={53:function(t,e,r){function n(t,e){var r=Object.keys(t);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(t);e&&(n=n.filter((function(e){return Object.getOwnPropertyDescriptor(t,e).enumerable}))),r.push.apply(r,n)}return r}function o(t){for(var e=1;e<arguments.length;e++){var r=null!=arguments[e]?arguments[e]:{};e%2?n(Object(r),!0).forEach((function(e){i(t,e,r[e])})):Object.getOwnPropertyDescriptors?Object.defineProperties(t,Object.getOwnPropertyDescriptors(r)):n(Object(r)).forEach((function(e){Object.defineProperty(t,e,Object.getOwnPropertyDescriptor(r,e))}))}return t}function i(t,e,r){return e in t?Object.defineProperty(t,e,{value:r,enumerable:!0,configurable:!0,writable:!0}):t[e]=r,t}var c=r(206),u=r(189);window.bbcpage=c.init(o({},window.page)),window.page=void 0,window.bbcuser=u.init(window,o({},window.user)),window.user=void 0},206:function(t){function e(t,e){var r=Object.keys(t);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(t);e&&(n=n.filter((function(e){return Object.getOwnPropertyDescriptor(t,e).enumerable}))),r.push.apply(r,n)}return r}function r(t){for(var r=1;r<arguments.length;r++){var o=null!=arguments[r]?arguments[r]:{};r%2?e(Object(o),!0).forEach((function(e){n(t,e,o[e])})):Object.getOwnPropertyDescriptors?Object.defineProperties(t,Object.getOwnPropertyDescriptors(o)):e(Object(o)).forEach((function(e){Object.defineProperty(t,e,Object.getOwnPropertyDescriptor(o,e))}))}return t}function n(t,e,r){return e in t?Object.defineProperty(t,e,{value:r,enumerable:!0,configurable:!0,writable:!0}):t[e]=r,t}t.exports={init:function(t){var e=r({},t);return document.addEventListener("bbc-page-reset",(function(t){var r;t.detail&&t.detail.page&&(r=t.detail.page,e=Object.assign(e,r)),document.dispatchEvent(new Event("bbc-page-updated"))})),{getName:function(){return Promise.resolve(e.name||function(){if("file:"===window.location.protocol)return"local.file";var t=window.location.pathname.replace(/\/$/,"").replace(/^\//,"").replace(/\//g,".");return"".concat(t,".page")}())},getLanguage:function(){return Promise.resolve(e.language)},getDestination:function(){return Promise.resolve(e.destination)},getProducer:function(){return Promise.resolve(e.producer)},getSection:function(){return Promise.resolve(e.section)},getContentType:function(){return Promise.resolve(e.contentType)},getContentId:function(){return Promise.resolve(e.contentId)},getReferrer:function(){return Promise.resolve(window.orb&&null!==window.orb.referrer&&void 0!==window.orb.referrer?window.orb.referrer:document.referrer)},getAdditionalProperties:function(){return Promise.resolve(r({},e.additionalProperties))},loadCSS:function(t){return new Promise((function(e,r){var n=document.createElement("link");n.type="text/css",n.rel="stylesheet",n.onload=function(){e()},n.href=t,document.getElementsByTagName("head")[0].appendChild(n)}))},isModal:function(){return Promise.resolve(e.modal)}}}}},189:function(t,e,r){function n(t){return(n="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t})(t)}function o(t,e){var r=Object.keys(t);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(t);e&&(n=n.filter((function(e){return Object.getOwnPropertyDescriptor(t,e).enumerable}))),r.push.apply(r,n)}return r}function i(t){for(var e=1;e<arguments.length;e++){var r=null!=arguments[e]?arguments[e]:{};e%2?o(Object(r),!0).forEach((function(e){c(t,e,r[e])})):Object.getOwnPropertyDescriptors?Object.defineProperties(t,Object.getOwnPropertyDescriptors(r)):o(Object(r)).forEach((function(e){Object.defineProperty(t,e,Object.getOwnPropertyDescriptor(r,e))}))}return t}function c(t,e,r){return e in t?Object.defineProperty(t,e,{value:r,enumerable:!0,configurable:!0,writable:!0}):t[e]=r,t}function u(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}function a(t,e){if(e&&("object"===n(e)||"function"==typeof e))return e;if(void 0!==e)throw new TypeError("Derived constructors may only return object or undefined");return function(t){if(void 0===t)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return t}(t)}function f(t){var e="function"==typeof Map?new Map:void 0;return(f=function(t){if(null===t||(r=t,-1===Function.toString.call(r).indexOf("[native code]")))return t;var r;if("function"!=typeof t)throw new TypeError("Super expression must either be null or a function");if(void 0!==e){if(e.has(t))return e.get(t);e.set(t,n)}function n(){return s(t,arguments,h(this).constructor)}return n.prototype=Object.create(t.prototype,{constructor:{value:n,enumerable:!1,writable:!0,configurable:!0}}),p(n,t)})(t)}function s(t,e,r){return(s=l()?Reflect.construct:function(t,e,r){var n=[null];n.push.apply(n,e);var o=new(Function.bind.apply(t,n));return r&&p(o,r.prototype),o}).apply(null,arguments)}function l(){if("undefined"==typeof Reflect||!Reflect.construct)return!1;if(Reflect.construct.sham)return!1;if("function"==typeof Proxy)return!0;try{return Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],(function(){}))),!0}catch(t){return!1}}function p(t,e){return(p=Object.setPrototypeOf||function(t,e){return t.__proto__=e,t})(t,e)}function h(t){return(h=Object.setPrototypeOf?Object.getPrototypeOf:function(t){return t.__proto__||Object.getPrototypeOf(t)})(t)}var d=r(11).loadModule,y=function(t){!function(t,e){if("function"!=typeof e&&null!==e)throw new TypeError("Super expression must either be null or a function");t.prototype=Object.create(e&&e.prototype,{constructor:{value:t,writable:!0,configurable:!0}}),Object.defineProperty(t,"prototype",{writable:!1}),e&&p(t,e)}(o,t);var e,r,n=(e=o,r=l(),function(){var t,n=h(e);if(r){var o=h(this).constructor;t=Reflect.construct(n,arguments,o)}else t=n.apply(this,arguments);return a(this,t)});function o(){return u(this,o),n.apply(this,arguments)}return o}(f(Error));t.exports={init:function(t,e){var r,n=i({},e),o=null;function c(){if(["X-Country","X-Ip_is_advertise_combined","X-Ip_is_uk_combined"].every((function(t){return!!n[t]})))return Promise.resolve(n);if(!o){var e=t.location.hostname.endsWith(".com")?"com":"co.uk";o=t.fetch("https://web.archive.org/web/20220311211218/https://www.bbc.".concat(e,"/userinfo")).then((function(t){return t.json()}))}return o}function u(t){if(t.status>=200&&t.status<300)return t;var e=new Error(t.statusText);throw e.response=t,e}function a(t){return t.json()}function f(){if(n.ageBand)return Promise.resolve(n);if(!r){if("undefined"==typeof XMLHttpRequest||!("withCredentials"in new XMLHttpRequest))return Promise.resolve(n);r=d(["idcta-v2/idcta-1"]).then((function(e){return e.initiateTokenRefresh().then((function(){return t.fetch(t.orbitData.userProfileUrl,{credentials:"include"}).then(u).then(a).then((function(t){return n=i(i({},n),t)}))}))}))}return r}var s={getHashedId:function(){return d(["idcta-v2/idcta-1"]).then((function(t){return t.getCookieInstance().getHidFromCookie()}))},isSignedIn:function(){return d(["idcta-v2/idcta-1"]).then((function(t){return t&&t.getCookieInstance().hasCookie()}))},getCountry:function(){return c().then((function(t){return t["X-Country"]||"gb"}))},isUKCombined:function(){return c().then((function(t){if(!t["X-Ip_is_uk_combined"])throw new y("missing isUKCombined from userinfo response");return"yes"===t["X-Ip_is_uk_combined"].toLowerCase()}))},canSeeAdverts:function(){return c().then((function(t){if(!t["X-Ip_is_advertise_combined"])throw new y("missing canSeeAdverts from userinfo response");return"yes"===t["X-Ip_is_advertise_combined"].toLowerCase()}))},getAgeBand:function(){return c().then((function(t){return t["X-Age-Band"]?Promise.resolve(t["X-Age-Band"]):s.isSignedIn().then((function(t){if(t)return f().then((function(t){return n["X-Age-Band"]=t["X-Age-Band"],n["X-Age-Band"]||void 0})).catch((function(){return n["X-Age-Band"]||void 0}))}))}))},allowsPerformanceCookies:function(){return d(["orb/cookies"]).then((function(t){return!!t.cookiesEnabled()&&!!t.readPolicy("performance")}))},allowsFunctionalCookies:function(){return d(["orb/cookies"]).then((function(t){return!!t.cookiesEnabled()&&!!t.readPolicy("personalisation")}))},getCookieValue:function(t){return d(["orb/cookies"]).then((function(e){return e.get(t)}))}};return s},BBCUserError:y}},11:function(t){t.exports={loadModule:function(t){return new Promise((function(e,r){window.require(t,(function(){e.apply(this,arguments)}),(function(t){r(t)}))}))}}},666:function(t){var e=function(t){"use strict";var e,r=Object.prototype,n=r.hasOwnProperty,o="function"==typeof Symbol?Symbol:{},i=o.iterator||"@@iterator",c=o.asyncIterator||"@@asyncIterator",u=o.toStringTag||"@@toStringTag";function a(t,e,r){return Object.defineProperty(t,e,{value:r,enumerable:!0,configurable:!0,writable:!0}),t[e]}try{a({},"")}catch(t){a=function(t,e,r){return t[e]=r}}function f(t,e,r,n){var o=e&&e.prototype instanceof v?e:v,i=Object.create(o.prototype),c=new k(n||[]);return i._invoke=function(t,e,r){var n=l;return function(o,i){if(n===h)throw new Error("Generator is already running");if(n===d){if("throw"===o)throw i;return C()}for(r.method=o,r.arg=i;;){var c=r.delegate;if(c){var u=_(c,r);if(u){if(u===y)continue;return u}}if("next"===r.method)r.sent=r._sent=r.arg;else if("throw"===r.method){if(n===l)throw n=d,r.arg;r.dispatchException(r.arg)}else"return"===r.method&&r.abrupt("return",r.arg);n=h;var a=s(t,e,r);if("normal"===a.type){if(n=r.done?d:p,a.arg===y)continue;return{value:a.arg,done:r.done}}"throw"===a.type&&(n=d,r.method="throw",r.arg=a.arg)}}}(t,r,c),i}function s(t,e,r){try{return{type:"normal",arg:t.call(e,r)}}catch(t){return{type:"throw",arg:t}}}t.wrap=f;var l="suspendedStart",p="suspendedYield",h="executing",d="completed",y={};function v(){}function g(){}function b(){}var w={};w[i]=function(){return this};var m=Object.getPrototypeOf,O=m&&m(m(S([])));O&&O!==r&&n.call(O,i)&&(w=O);var P=b.prototype=v.prototype=Object.create(w);function j(t){["next","throw","return"].forEach((function(e){a(t,e,(function(t){return this._invoke(e,t)}))}))}function E(t,e){function r(o,i,c,u){var a=s(t[o],t,i);if("throw"!==a.type){var f=a.arg,l=f.value;return l&&"object"==typeof l&&n.call(l,"__await")?e.resolve(l.__await).then((function(t){r("next",t,c,u)}),(function(t){r("throw",t,c,u)})):e.resolve(l).then((function(t){f.value=t,c(f)}),(function(t){return r("throw",t,c,u)}))}u(a.arg)}var o;this._invoke=function(t,n){function i(){return new e((function(e,o){r(t,n,e,o)}))}return o=o?o.then(i,i):i()}}function _(t,r){var n=t.iterator[r.method];if(n===e){if(r.delegate=null,"throw"===r.method){if(t.iterator.return&&(r.method="return",r.arg=e,_(t,r),"throw"===r.method))return y;r.method="throw",r.arg=new TypeError("The iterator does not provide a 'throw' method")}return y}var o=s(n,t.iterator,r.arg);if("throw"===o.type)return r.method="throw",r.arg=o.arg,r.delegate=null,y;var i=o.arg;return i?i.done?(r[t.resultName]=i.value,r.next=t.nextLoc,"return"!==r.method&&(r.method="next",r.arg=e),r.delegate=null,y):i:(r.method="throw",r.arg=new TypeError("iterator result is not an object"),r.delegate=null,y)}function x(t){var e={tryLoc:t[0]};1 in t&&(e.catchLoc=t[1]),2 in t&&(e.finallyLoc=t[2],e.afterLoc=t[3]),this.tryEntries.push(e)}function L(t){var e=t.completion||{};e.type="normal",delete e.arg,t.completion=e}function k(t){this.tryEntries=[{tryLoc:"root"}],t.forEach(x,this),this.reset(!0)}function S(t){if(t){var r=t[i];if(r)return r.call(t);if("function"==typeof t.next)return t;if(!isNaN(t.length)){var o=-1,c=function r(){for(;++o<t.length;)if(n.call(t,o))return r.value=t[o],r.done=!1,r;return r.value=e,r.done=!0,r};return c.next=c}}return{next:C}}function C(){return{value:e,done:!0}}return g.prototype=P.constructor=b,b.constructor=g,g.displayName=a(b,u,"GeneratorFunction"),t.isGeneratorFunction=function(t){var e="function"==typeof t&&t.constructor;return!!e&&(e===g||"GeneratorFunction"===(e.displayName||e.name))},t.mark=function(t){return Object.setPrototypeOf?Object.setPrototypeOf(t,b):(t.__proto__=b,a(t,u,"GeneratorFunction")),t.prototype=Object.create(P),t},t.awrap=function(t){return{__await:t}},j(E.prototype),E.prototype[c]=function(){return this},t.AsyncIterator=E,t.async=function(e,r,n,o,i){void 0===i&&(i=Promise);var c=new E(f(e,r,n,o),i);return t.isGeneratorFunction(r)?c:c.next().then((function(t){return t.done?t.value:c.next()}))},j(P),a(P,u,"Generator"),P[i]=function(){return this},P.toString=function(){return"[object Generator]"},t.keys=function(t){var e=[];for(var r in t)e.push(r);return e.reverse(),function r(){for(;e.length;){var n=e.pop();if(n in t)return r.value=n,r.done=!1,r}return r.done=!0,r}},t.values=S,k.prototype={constructor:k,reset:function(t){if(this.prev=0,this.next=0,this.sent=this._sent=e,this.done=!1,this.delegate=null,this.method="next",this.arg=e,this.tryEntries.forEach(L),!t)for(var r in this)"t"===r.charAt(0)&&n.call(this,r)&&!isNaN(+r.slice(1))&&(this[r]=e)},stop:function(){this.done=!0;var t=this.tryEntries[0].completion;if("throw"===t.type)throw t.arg;return this.rval},dispatchException:function(t){if(this.done)throw t;var r=this;function o(n,o){return u.type="throw",u.arg=t,r.next=n,o&&(r.method="next",r.arg=e),!!o}for(var i=this.tryEntries.length-1;i>=0;--i){var c=this.tryEntries[i],u=c.completion;if("root"===c.tryLoc)return o("end");if(c.tryLoc<=this.prev){var a=n.call(c,"catchLoc"),f=n.call(c,"finallyLoc");if(a&&f){if(this.prev<c.catchLoc)return o(c.catchLoc,!0);if(this.prev<c.finallyLoc)return o(c.finallyLoc)}else if(a){if(this.prev<c.catchLoc)return o(c.catchLoc,!0)}else{if(!f)throw new Error("try statement without catch or finally");if(this.prev<c.finallyLoc)return o(c.finallyLoc)}}}},abrupt:function(t,e){for(var r=this.tryEntries.length-1;r>=0;--r){var o=this.tryEntries[r];if(o.tryLoc<=this.prev&&n.call(o,"finallyLoc")&&this.prev<o.finallyLoc){var i=o;break}}i&&("break"===t||"continue"===t)&&i.tryLoc<=e&&e<=i.finallyLoc&&(i=null);var c=i?i.completion:{};return c.type=t,c.arg=e,i?(this.method="next",this.next=i.finallyLoc,y):this.complete(c)},complete:function(t,e){if("throw"===t.type)throw t.arg;return"break"===t.type||"continue"===t.type?this.next=t.arg:"return"===t.type?(this.rval=this.arg=t.arg,this.method="return",this.next="end"):"normal"===t.type&&e&&(this.next=e),y},finish:function(t){for(var e=this.tryEntries.length-1;e>=0;--e){var r=this.tryEntries[e];if(r.finallyLoc===t)return this.complete(r.completion,r.afterLoc),L(r),y}},catch:function(t){for(var e=this.tryEntries.length-1;e>=0;--e){var r=this.tryEntries[e];if(r.tryLoc===t){var n=r.completion;if("throw"===n.type){var o=n.arg;L(r)}return o}}throw new Error("illegal catch attempt")},delegateYield:function(t,r,n){return this.delegate={iterator:S(t),resultName:r,nextLoc:n},"next"===this.method&&(this.arg=e),y}},t}(t.exports);try{regeneratorRuntime=e}catch(t){Function("r","regeneratorRuntime = r")(e)}}},e={};function r(n){var o=e[n];if(void 0!==o)return o.exports;var i=e[n]={exports:{}};return t[n](i,i.exports,r),i.exports}r(666);r(53)}();</script> <script type="module"> window.importmap = {"orbit-drawer":"https://web.archive.org/web/20220311211218/https://static.files.bbci.co.uk/orbit/1b6b61cd4d5f792da2216b606c5dfe73/js/drawer-api.bundle.js","bbccookies":"https://web.archive.org/web/20220311211218/https://static.files.bbci.co.uk/cookies/6868f40b6841deedfcf9895de775e1ab/cookie-banner/cookie-library.module.js"}; var e={748:function(e,t,n){function o(){const e={},t={listeners:{},resolves:{}};function n(e,n){e in t.resolves?n(e,t.resolves[e]):t.listeners[e]?t.listeners[e].push(n):t.listeners[e]=[n]}function o(e,n){t.resolves[e]=n;const o=t.listeners[e];o&&(o.forEach((t=>{t(e,n)})),delete t.listeners[e])}function i(t,n,i){n&&!n.splice?function(e,t){o(e,"function"==typeof t?t():t)}(t,n):function(t,n,i){e.require(n,((...e)=>{o(t,i(...e))}))}(t,n,i)}return e.require=function(e,o,i){if(e.splice)if(0===e.length)o();else{const r=[];let c,s=0;void 0!==i&&(c=setTimeout((()=>{console.log("require timeout, dependencies not loaded:",e,r),i()}),3e3));const u=(i,f)=>{if("string"==typeof f){const e=f.includes("callback=")?f:`${f}.js`;return delete t.resolves[i],void function(e,t,n){const o=document.createElement("script");o.type="text/javascript",o.async=!0,o.setAttribute("data-module",e),o.src=t,o.onload=n,document.head.appendChild(o)}(i,e,(()=>{n(i,u)}))}r[e.indexOf(i)]=f,s+=1,s>=e.length&&(clearTimeout(c),o(...r))};e.forEach((e=>{n(e,u)}))}else{const t=e;window.require.config(t)}},e.require.config=function(n){let o;(n.baseUrl||window.location.href.match(/(bbc.co.uk|bbc.com)/))&&(o=new URL(n.baseUrl||"",window.location.href||void 0).toString(),"/"!==o.charAt(o.length-1)&&(o+="/")),Object.keys(n.paths).forEach((t=>{const i=new URL(n.paths[t],o);e.define(t,i.toString())})),n.map&&n.map["*"]&&Object.keys(n.map["*"]).forEach((o=>{const i=n.map["*"][o],r=t.resolves[i];e.define(o,r)}))},e.define=function(e,t,n){"string"!=typeof e?function(e,t){if(document.currentScript){const n=document.currentScript.getAttribute("data-module");n&&i(n,e,t)}}(e,t):i(e,t,n)},e.requirejs=e.require,e.registry=t,e.define.amd=!0,e}n.r(t),n.d(t,{default:function(){return o},init:function(){return o}})},0:function(e){e.exports={loadModule:function(e){return new Promise(((t,n)=>{window.require(e,(function(){t.apply(this,arguments)}),(e=>{n(e)}))}))}}},831:function(e,t,n){const{loadModule:o}=n(0);e.exports=function(e){return function(t){return"string"==typeof t&&e[t]?import(e[t]):o(t)}}}},t={};function n(o){var i=t[o];if(void 0!==i)return i.exports;var r=t[o]={exports:{}};return e[o](r,r.exports,n),r.exports}n.d=function(e,t){for(var o in t)n.o(t,o)&&!n.o(e,o)&&Object.defineProperty(e,o,{enumerable:!0,get:t[o]})},n.o=function(e,t){return Object.prototype.hasOwnProperty.call(e,t)},n.r=function(e){"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},function(){const e=n(748),t=n(831);"function"!=typeof window.define&&Object.assign(window,e.init()),window.shimport=t({...window.importmap}),window.importMap=void 0}();</script> <script type="text/javascript"> window.page = undefined; window.user = undefined; </script> <script> window.orb = { worldwideNavlinks: '<li class="orb-nav-homedotcom"><a href="https://web.archive.org/web/20220311211218/https://www.bbc.com/"><span>Home</span></a></li><li class="orb-nav-newsdotcom"><a href="https://web.archive.org/web/20220311211218/https://www.bbc.com/news"><span>News</span></a></li><li class="orb-nav-sport"><a href="https://web.archive.org/web/20220311211218/https://www.bbc.com/sport"><span>Sport</span></a></li><li class="orb-nav-reeldotcom"><a href="https://web.archive.org/web/20220311211218/https://www.bbc.com/reel"><span>Reel</span></a></li><li class="orb-nav-worklife"><a href="https://web.archive.org/web/20220311211218/https://www.bbc.com/worklife"><span>Worklife</span></a></li><li class="orb-nav-traveldotcom"><a href="https://web.archive.org/web/20220311211218/https://www.bbc.com/travel"><span>Travel</span></a></li><li class="orb-nav-future"><a href="https://web.archive.org/web/20220311211218/https://www.bbc.com/future"><span>Future</span></a></li><li class="orb-nav-culture"><a href="https://web.archive.org/web/20220311211218/https://www.bbc.com/culture"><span>Culture</span></a></li><li class="orb-nav-music"><a href="https://web.archive.org/web/20220311211218/https://www.bbc.com/culture/music"><span>Music</span></a></li><li class="orb-nav-tv"><a href="https://web.archive.org/web/20220311211218/https://www.bbc.co.uk/schedules/p00fzl9m"><span>TV</span></a></li><li class="orb-nav-weather"><a href="https://web.archive.org/web/20220311211218/https://www.bbc.com/weather"><span>Weather</span></a></li><li class="orb-nav-sounds"><a href="https://web.archive.org/web/20220311211218/https://www.bbc.co.uk/sounds"><span>Sounds</span></a></li>', } </script> <script src="https://web.archive.org/web/20220311211218js_/https://static.files.bbci.co.uk/orbit/1b6b61cd4d5f792da2216b606c5dfe73/js/api-forge-free.min.js"></script> <link rel="preload" href="https://web.archive.org/web/20220311211218/https://static.files.bbci.co.uk/fonts/reith/2.512/BBCReithSans_W_Rg.woff2" as="font" type="font/woff2" crossorigin> <link rel="preload" href="https://web.archive.org/web/20220311211218/https://static.files.bbci.co.uk/fonts/reith/2.512/BBCReithSans_W_Bd.woff2" as="font" type="font/woff2" crossorigin> <!-- navid Web Module: 0.2.0-97.3bcc657 --> <!-- searchbox Web Module: 3.1.0-502.06648d8 --> <!-- navpromo Web Module: 3.0.0-296.2a9e474 --> <!-- cookies Web Module: 0.0.3-711.5b5023b --> <!-- useractivityhelper Web Module: 1.0.0-233.d4907ab --> <!-- reverb Web Module: 3.3.0 --> <link rel="stylesheet" href="https://web.archive.org/web/20220311211218cs_/https://static.files.bbci.co.uk/account/id-cta/1.54.22-wp/style/id-cta.css"/><!--[if IE 8]><link href="https://static.files.bbci.co.uk/account/id-cta/1.54.22-wp/style/ie8.css" rel="stylesheet"/> <![endif]--><script type="text/javascript">(function () {if (!window.require) {throw new Error('idcta: could not find require module');}if (typeof (map) == 'undefined') {var map = {};}if (!!document.createElementNS && !!document.createElementNS('http://www.w3.org/2000/svg', 'svg').createSVGRect) {document.documentElement.className += ' id-svg';}var ptrt = new RegExp("[\\?&]ptrt=([^&]*)").exec(document.location.href);var ENDPOINT_URL = 'https://web.archive.org/web/20220311211218/https://idcta.api.bbc.co.uk';var ENDPOINT_CONFIG = ('/idcta/config?callback=&ptrt=' + (ptrt ? ptrt[1] : encodeURIComponent(document.location.href))).replace(/\&amp;/g, '&');var ENDPOINT_TRANSLATIONS = '/idcta/translations?callback=';function hasPromise() {var P = window.Promise;var promiseToString = null;if (P) {try {promiseToString = Object.prototype.toString.call(P.resolve());} catch (e) {/*silently ignored*/}}return (promiseToString === '[object Promise]' && !P.cast);}if (hasPromise()) {define('idcta/es6-promise', function () {return window.Promise;});define('idcta-v2/es6-promise', function () {return window.Promise;});}map['idcta-v2'] = 'https://web.archive.org/web/20220311211218/https://static.files.bbci.co.uk/account/id-cta/1.54.22-wp/modules/idcta-v2';map['idcta-v2/config'] = ENDPOINT_URL + ENDPOINT_CONFIG;map['idcta-v2/translations'] = ENDPOINT_URL + ENDPOINT_TRANSLATIONS;map['idcta'] = 'https://web.archive.org/web/20220311211218/https://static.files.bbci.co.uk/account/id-cta/1.8.2/modules/idcta';map['idcta-v2/idcta-1'] = 'https://web.archive.org/web/20220311211218/https://static.files.bbci.co.uk/account/id-cta/1.54.22-wp/modules/idcta-v2/dist/idcta-1.min';map['idcta-v2/experiment-snippet'] = 'https://web.archive.org/web/20220311211218/https://cdn.optimizely.com/public/4621041136/s/idcta_live';const idctaShim = {deps: ['idcta-v2/idcta-1'],};require({shim: {'idcta-v2/statusbar': idctaShim,'idcta-v2/id-config': idctaShim},map: {'*': {'idcta/idcta-1': 'idcta-v2/idcta-1','idcta': 'idcta-v2',}},paths: map});window.idctaBaseUrl = ENDPOINT_URL;define('idcta/config', ['idcta-v2/config'], function (data) { return data; });define('idcta/translations', ['idcta-v2/translations'], function (data) { return data; });})();</script> <link rel="stylesheet" href="https://web.archive.org/web/20220311211218cs_/https://nav.files.bbci.co.uk/searchbox/42b955eee75a305e2e20ce2ce745e772/css/box.css"> <script src="https://web.archive.org/web/20220311211218js_/https://static.files.bbci.co.uk/cookies/6868f40b6841deedfcf9895de775e1ab/cookie-banner/cookie-library.bundle.js"></script><script type="text/javascript">void 0!==window.define&&define("orb/cookies",function(){return window.bbccookies})</script> <script type="text/javascript">window.__detectview={clickManagementEnabled:false};</script> <script type="text/javascript">"use strict";!function(){window.__reverbStaticLocation="https://web.archive.org/web/20220311211218/https://mybbc-analytics.files.bbci.co.uk/reverb-client-js/",window.__smarttagVersion="5.29.1",window.__reverb={},window.__reverb.__reverbLoadedPromise=new Promise(function(e,i){window.__reverb.__resolveReverbLoaded=e,window.__reverb.__rejectReverbLoaded=i}),window.__reverb.__reverbTimeout=setTimeout(function(){window.__reverb.__rejectReverbLoaded()},5e3);var i=function(d,a){window.__reverb.__reverbLoadedPromise.then(function(e){if(d&&d.detail){var i=!!d.detail.item,n=d.detail.label,t=i?"viewability":d.detail.type,o=d.detail.elem,r=d.detail.originalEvent;d.detail.isClick&&(a=d.detail.isClick),e.userActionEvent(t,n,d.detail,o,r,a)}},function(){console.log("Reverb failed to load. Event not sent")})},n=function(){window.__reverb.__reverbLoadedPromise.then(function(e){e.initialise().then(function(){return e.viewEvent()})},function(){console.log("Reverb failed to load. Event not sent")})};document.addEventListener("bbc-user-event",function(e){i(e,!1)}),document.addEventListener("bbc-user-click",function(e){i(e,!0)}),document.addEventListener("bbc-page-updated",n),window.addEventListener("pageshow",function(e){e.persisted&&n()})}();</script><script type="text/javascript" src="https://web.archive.org/web/20220311211218js_/https://mybbc-analytics.files.bbci.co.uk/reverb-client-js/reverb-3.3.0.js" async></script> <script type="text/javascript"> require.config({ "baseUrl": "//web.archive.org/web/20220311211218/https://static.bbci.co.uk/", "paths": { "jquery-1": "//web.archive.org/web/20220311211218/https://static.bbci.co.uk/frameworks/jquery/0.3.0/sharedmodules/jquery-1.7.2", "jquery-1.9": "//web.archive.org/web/20220311211218/https://static.bbci.co.uk/frameworks/jquery/0.4.1/sharedmodules/jquery-1.9.1", "swfobject-2": "//web.archive.org/web/20220311211218/https://static.bbci.co.uk/frameworks/swfobject/0.1.10/sharedmodules/swfobject-2", "bump-3": "//web.archive.org/web/20220311211218/https://emp.bbci.co.uk/emp/bump-3/bump-3" } }); </script> <title> How does the BBC use cookies for commercial purposes (outside the UK)? - Using the BBC </title> <meta name="description" content="desc"> <meta name="keywords" content="online; behavioural; advertising; cookies"> <meta property="og:type" content="website"/> <meta property="og:description" content="desc"/> <meta property="og:site_name" content="How does the BBC use cookies for commercial purposes (outside the UK)? - Using the BBC"/> <meta property="og:locale" content="en_GB"/> <meta charset="utf-8"/> <link href="/web/20220311211218cs_/https://www.bbc.com/usingthebbc/static/css/app.css?ver=8.5.1" rel="stylesheet"/> <link href="/web/20220311211218cs_/https://www.bbc.com/usingthebbc/static/css/mybbc-privacy-hub.min.css?ver=1.0.20180728" rel="stylesheet"/> <script type="text/javascript"> window.usingthebbcIDCTA = { locale: 'en_GB', idcta: 'https://web.archive.org/web/20220311211218/https://ssl.bbc.co.uk/idcta/init', notifications: { get: 'https://web.archive.org/web/20220311211218/https://preferences.notifications.api.bbc.co.uk/subscriptions', set: 'https://web.archive.org/web/20220311211218/https://preferences.notifications.api.bbc.co.uk/preference' }, url: 'https://web.archive.org/web/20220311211218/https://www.bbc.co.uk/usingthebbc/cookies/how-does-the-bbc-use-cookies-for-advertising/', renderIDCTAButton: false }; </script> <script src="/web/20220311211218js_/https://www.bbc.com/usingthebbc/static/js/script.min.js" type="text/javascript"></script> </head> <body class="page-explainer"> <div id="cookiePrompt"></div> <noscript><p style="position: absolute; top: -999em"><img src="https://web.archive.org/web/20220311211218im_/https://a1.api.bbc.co.uk/hit.xiti?&amp;col=1&amp;from=p&amp;ptag=js&amp;s=598253&amp;p=unknown&amp;x2=[responsive]&amp;x3=[bbc_website]&amp;x4=[en]&amp;x8=[reverb-3.3.0-nojs]&amp;x11=[]&amp;x12=[]" height="1" width="1" alt=""></p></noscript> <header id="orb-banner" role="banner" aria-label="BBC" class="geo orbit-default orbit-language-en"><div id="orb-header" class="orb-nav-pri orb-nav-pri-white orb-nav-empty" dir="ltr"><div class="orb-nav-pri-container b-r b-g-p"><div class="orb-nav-section orb-nav-blocks"><a href="https://web.archive.org/web/20220311211218/https://www.bbc.co.uk/" id="homepage-link">Homepage</a></div><section><div class="orb-skip-links"><h2>Accessibility links</h2><ul><li><a href="#orb-modules">Skip to content</a></li><li><a id="orb-accessibility-help" href="https://web.archive.org/web/20220311211218/https://www.bbc.co.uk/accessibility/">Accessibility Help</a></li></ul></div></section><div id="mybbc-wrapper" class="orb-nav-section orb-nav-id orb-nav-focus orb-nav-id-default"> <div id="idcta-statusbar" class="orb-nav-section orb-nav-focus" data-bbc-container="id-cta" data-bbc-event-type="click" data-bbc-ignore-views="1" data-bbc-metadata="{&quot;id-cta-type&quot;: &quot;statusbar-orb&quot;}" data-bbc-source="responsive_web" data-bbc-title="id-cta-sign-in"><a id="idcta-link" href="https://web.archive.org/web/20220311211218/https://account.bbc.com/account"><span id="idcta-username">BBC Account</span></a></div><script type="text/javascript">require(['idcta/statusbar'], function (statusbar) {new statusbar.Statusbar({id: 'idcta-statusbar', publiclyCacheable: true});});</script><!-- Because we are now loading the notification bell CSS asynchronously, we need this inline style hack to ensure that the notification div is hidden by default, and shown only if and when the bell code is loaded from notification-ui --><a id="notification-link" class="js-notification-link animated three" href="#" style="display: none"><span class="hidden-span">Notifications</span><div class="notification-link--triangle"></div><div class="notification-link--triangle"></div><span id="not-num"></span></a> </div><nav role="navigation" aria-label="BBC" class="orb-nav"><div class="orb-nav-section orb-nav-links orb-nav-focus" id="orb-nav-links"><ul><li class="orb-nav-home"><a href="https://web.archive.org/web/20220311211218/https://www.bbc.co.uk/"><span>Home</span></a></li><li class="orb-nav-news"><a href="https://web.archive.org/web/20220311211218/https://www.bbc.co.uk/news"><span>News</span></a></li><li class="orb-nav-sport"><a href="https://web.archive.org/web/20220311211218/https://www.bbc.co.uk/sport"><span>Sport</span></a></li><li class="orb-nav-weather"><a href="https://web.archive.org/web/20220311211218/https://www.bbc.co.uk/weather"><span>Weather</span></a></li><li class="orb-nav-iplayer"><a href="https://web.archive.org/web/20220311211218/https://www.bbc.co.uk/iplayer"><span>iPlayer</span></a></li><li class="orb-nav-sounds"><a href="https://web.archive.org/web/20220311211218/https://www.bbc.co.uk/sounds"><span>Sounds</span></a></li><li class="orb-nav-bitesize"><a href="https://web.archive.org/web/20220311211218/https://www.bbc.co.uk/bitesize"><span>Bitesize</span></a></li><li class="orb-nav-cbeebies"><a href="https://web.archive.org/web/20220311211218/https://www.bbc.co.uk/cbeebies"><span>CBeebies</span></a></li><li class="orb-nav-cbbc"><a href="https://web.archive.org/web/20220311211218/https://www.bbc.co.uk/cbbc"><span>CBBC</span></a></li><li class="orb-nav-food"><a href="https://web.archive.org/web/20220311211218/https://www.bbc.co.uk/food"><span>Food</span></a></li><li id="orb-nav-more" style="width: 88px" aria-controls="orb-panel-more"><a href="#orb-footer" data-alt="More" class="istats-notrack">Menu<span class="orb-icon orb-icon-arrow"></span></a></li></ul></div></nav><div class="orb-nav-section orb-nav-search" role="search"> <a id="orbit-search-button" class="orbit-search__button" aria-expanded="false" href="https://web.archive.org/web/20220311211218/https://search.bbc.co.uk/search?scope=all" title="Search BBC">Search BBC</a> </div></div><div id="orb-panels"></div><div id="orbit-drawer-container"></div></div></header> <!-- Styling hook for shared modules only --> <div id="orb-modules"> <nav class="navbar navbar-subject"> <div class="container-fluid"> <div class="navbar-tabs"> <div class="navbar-item"> <div class="navbar-header"> <a class="navbar-brand gel-great-primer-bold gel-header-link text-color-white" href="/web/20220311211218/https://www.bbc.com/usingthebbc/" title="Using the BBC">Using the BBC</a> <button aria-expanded="true" class="navbar-toggle" type="button"><span class="icon-label gel-long-primer">Menu</span></button> </div> </div> <div class="navbar-item navbar-list" aria-expanded="false"> <!-- navigation mobile --> <ul class="nav navbar-mobile"> <li class="dropdown"><a class="gel-brevier-bold" data-id="9695fab2-d67d-4d2b-93be-39d7a74967dc" href="#" title="Your Information &amp; Privacy">Your Information &amp; Privacy <span class="caret"></span></a><ul id="9695fab2-d67d-4d2b-93be-39d7a74967dc" class="dropdown-menu" aria-expanded="false"> <li><a class="gel-brevier-bold" href="/web/20220311211218/https://www.bbc.com/usingthebbc/privacy/" title="Your Information &amp; Privacy Home">Your Information &amp; Privacy Home</a></li><li><a class="gel-brevier-bold" href="/web/20220311211218/https://www.bbc.com/usingthebbc/privacy/what-are-you-doing-with-my-data/" title="Personal Information">Personal Information</a></li><li><a class="gel-brevier-bold" href="/web/20220311211218/https://www.bbc.com/usingthebbc/privacy/privacy-promise/" title="Privacy and Your Activity">Privacy and Your Activity</a></li></ul></li><li class="dropdown open"><a class="gel-brevier-bold active" data-id="eb47bba9-bd19-496a-86c0-e7d327b5a5ad" href="#" title="Cookie &amp; Browser Settings">Cookie &amp; Browser Settings <span class="caret"></span></a><ul id="eb47bba9-bd19-496a-86c0-e7d327b5a5ad" class="dropdown-menu" aria-expanded="false"> <li><a class="gel-brevier-bold" href="/web/20220311211218/https://www.bbc.com/usingthebbc/cookies/" title="Cookie &amp; Browser Settings Home">Cookie &amp; Browser Settings Home</a></li><li><a class="gel-brevier-bold active" href="/web/20220311211218/https://www.bbc.com/usingthebbc/cookies/what-do-i-need-to-know-about-cookies/" title="About Cookies">About Cookies</a></li><li><a class="gel-brevier-bold" href="/web/20220311211218/https://www.bbc.com/usingthebbc/cookies/how-can-i-change-my-bbc-cookie-settings/" title="Cookie Settings">Cookie Settings</a></li></ul></li><li class="dropdown"><a class="gel-brevier-bold" data-id="d56a7dec-4194-4b04-8aa2-1ef3ea347c8a" href="#" title="Creating &amp; Using Your Account">Creating &amp; Using Your Account <span class="caret"></span></a><ul id="d56a7dec-4194-4b04-8aa2-1ef3ea347c8a" class="dropdown-menu" aria-expanded="false"> <li><a class="gel-brevier-bold" href="/web/20220311211218/https://www.bbc.com/usingthebbc/account/" title="Creating &amp; Using Your Account Home">Creating &amp; Using Your Account Home</a></li><li><a class="gel-brevier-bold" href="/web/20220311211218/https://www.bbc.com/usingthebbc/account/what-is-a-bbc-account/" title="Help Registering &amp; Signing In">Help Registering &amp; Signing In</a></li><li><a class="gel-brevier-bold" href="/web/20220311211218/https://www.bbc.com/usingthebbc/account/adding-things-on-the-bbc/" title="Account Features">Account Features</a></li><li><a class="gel-brevier-bold" href="/web/20220311211218/https://www.bbc.com/usingthebbc/account/how-is-the-bbc-personalised-to-me/" title="Personalisation &amp; Recommendations">Personalisation &amp; Recommendations</a></li></ul></li><li class="dropdown"><a class="gel-brevier-bold" data-id="316b35c9-45f4-482f-9869-98765474c4a2" href="#" title="Terms of Use">Terms of Use <span class="caret"></span></a><ul id="316b35c9-45f4-482f-9869-98765474c4a2" class="dropdown-menu" aria-expanded="false"> <li><a class="gel-brevier-bold" href="/web/20220311211218/https://www.bbc.com/usingthebbc/terms/" title="Terms of Use Home">Terms of Use Home</a></li><li><a class="gel-brevier-bold" href="/web/20220311211218/https://www.bbc.com/usingthebbc/terms/do-i-need-a-tv-licence/" title="Accessing the BBC">Accessing the BBC</a></li><li><a class="gel-brevier-bold" href="/web/20220311211218/https://www.bbc.com/usingthebbc/terms/what-are-the-rules-for-commenting/" title="Joining in">Joining in</a></li><li><a class="gel-brevier-bold" href="/web/20220311211218/https://www.bbc.com/usingthebbc/terms/can-i-use-bbc-content/" title="Using BBC Content">Using BBC Content</a></li></ul></li></ul> <!-- navigation mobile --> <!-- navigation desktop --> <div class="navbar-desktop"> <ul class="nav navbar-nav"> <li class=""><a class="gel-brevier-bold" href="/web/20220311211218/https://www.bbc.com/usingthebbc/privacy/" title="Your Information &amp; Privacy">Your Information &amp; Privacy <span class="caret"></span></a></li><li class="active"><a class="gel-brevier-bold" href="/web/20220311211218/https://www.bbc.com/usingthebbc/cookies/" title="Cookie &amp; Browser Settings">Cookie &amp; Browser Settings <span class="caret"></span></a></li><li class=""><a class="gel-brevier-bold" href="/web/20220311211218/https://www.bbc.com/usingthebbc/account/" title="Creating &amp; Using Your Account">Creating &amp; Using Your Account <span class="caret"></span></a></li><li class=""><a class="gel-brevier-bold" href="/web/20220311211218/https://www.bbc.com/usingthebbc/terms/" title="Terms of Use">Terms of Use <span class="caret"></span></a></li> </ul> </div> <!-- navigation desktop --> </div> </div> </div> </nav> <nav class="navbar navbar-topic"> <div class="container-fluid"> <div class="navbar-tabs"><div class="navbar-item"><a class="navbar-brand gel-double-pica-bold gel-header-link text-color-white" href="/web/20220311211218/https://www.bbc.com/usingthebbc/cookies/" title="Cookie &amp; Browser Settings">Cookie &amp; Browser Settings</a></div> <div class="navbar-item navbar-list"> <ul class="navbar-nav"> <li class="active"><a class="gel-brevier-bold" href="/web/20220311211218/https://www.bbc.com/usingthebbc/cookies/what-do-i-need-to-know-about-cookies/" title="About Cookies">About Cookies</a></li><li><a class="gel-brevier-bold" href="/web/20220311211218/https://www.bbc.com/usingthebbc/cookies/how-can-i-change-my-bbc-cookie-settings/" title="Cookie Settings">Cookie Settings</a></li> </ul> </div></div> </div> </nav> <section class="bg-color-light grid-padding"> <div class="gel-wrap"> <div class="gel-layout gel-background-white"> <div class="gel-layout__item gel-bp-m-1/3 gel-bp-l-1/4"> <div data-id="7c2c9699-96bd-4914-91c1-cb9145c1d9da" class="navbar-sidebar"><h2 class="gel-pica-bold icons icon-cookies"><a href="#" title="About Cookies">About Cookies <span class="caret"></span></a></h2><ul class="list-vertical"><li data-parent-id="" class=""><a href="/web/20220311211218/https://www.bbc.com/usingthebbc/cookies/what-do-i-need-to-know-about-cookies/" class="gel-pica-bold" title="What do I need to know about cookies?">What do I need to know about cookies?</a></li><li data-parent-id="" class=""><a href="/web/20220311211218/https://www.bbc.com/usingthebbc/cookies/how-does-the-bbc-use-cookies/" class="gel-pica-bold" title="How does the BBC use cookies?">How does the BBC use cookies?</a></li><li data-parent-id="" class=""><a href="/web/20220311211218/https://www.bbc.com/usingthebbc/cookies/what-happens-if-third-party-cookies-are-disabled-on-my-browser/" class="gel-pica-bold" title="What happens if third party cookies are disabled on my browser?">What happens if third party cookies are disabled on my browser?</a></li><li data-parent-id="" class="active"><a href="/web/20220311211218/https://www.bbc.com/usingthebbc/cookies/how-does-the-bbc-use-cookies-for-advertising/" class="gel-pica-bold" title="How does the BBC use cookies for commercial purposes (outside the UK)?">How does the BBC use cookies for commercial purposes (outside the UK)?</a></li></ul></div> </div> <div class="gel-layout__item gel-bp-m-2/3 gel-bp-l-3/4 gel-layout__item-nopadding"> <article id="27ad41d7-0841-44c7-a4ce-0979e307f3f4" class="gel-explainer-ops"> <h1 class="gel-trafalgar-bold utb-heading-color">How does the BBC use cookies for commercial purposes (outside the UK)?</h1> <p class="gel-timestamp gel-brevier">Page updated: 31 March 2021</p> <!-- explainer-content --> <div class="gel-pica"> <div class="gel-explainer--generic"> <div class="gel-copy"> <p>If you access the BBC website and/or related apps (the &ldquo;Services&rdquo;) from outside the UK, you may see third party advertising and content recommendations, as well as promotional BBC messaging (personalised based on your BBC ad profile). We refer to these collectively in this explainer as &ldquo;Ads&rdquo;.</p> <p>Third party advertising and content recommendations enable us to generate income to help fund BBC Services, including making those services available to international audiences. BBC Global News, a commercial subsidiary of the BBC, is responsible for commercialising the Services and is the &ldquo;data controller&rdquo; for the purposes of data protection law.</p> <p>We try our best to make sure that Ads are only visible to people outside the UK,. If you are viewing the website from within the UK and you can see Ads,&nbsp;<a title="Contact form" href="https://web.archive.org/web/20220311211218/https://www.bbc.co.uk/contact/adverts-uk/#/Adverts%20UK">please use this form</a> to let us know.</p> <p>If you've seen what you believe to be inappropriate advertising on our online services, <a href="https://web.archive.org/web/20220311211218/http://www.bbc.co.uk/faqs/inappropriate_advertising" target="_self">please read this FAQ for advice.</a></p> <p>If you are looking to manage your Commercial Cookies Settings, please refer to the &ldquo;How can I opt-out from ad personalisation?&rdquo; section below.</p> </div> </div> </div> <div class="gel-pica"> <div class="gel-explainer--generic"> <h2 class="gel-great-primer-bold">How are the Ads shown to me personalised? </h2> <div class="gel-copy"> <p>If you are in the UK, the Services are funded by the Licence Fee and do not contain Ads and your data will not be used for ad personalisation purposes.</p> <p>If you are outside the UK, the Ads you see may be personalised based on information that has been inferred about you and your interests. Personalising Ads helps us to show you fewer, more relevant Ads. It also means we can receive more revenue from our advertisers, allowing us to invest more in great content.</p> <p>We will also show you Ads relevant to the content you viewing. For example, if you are reading an article about travel then we might show you ads for airlines. This is called contextual advertising.</p> <p>The personalisation of Ads may be based on information, referred to as &ldquo;data&rdquo;, collected about you (e.g. your registration data provided to sign up for a BBC Account), your use of our Services (e.g. what articles you read) and other data attributed to you by the advertiser or a data specialist &ndash; such as your interests, age, gender and similar statistical characteristics (demographics) inferred from your internet browsing or marketing data that an advertiser holds about you. We may also use your general location to show you Ads relevant to where you are, so if you are in the US you will see Ads from US advertisers.</p> <p>To create an ad profile for personalisation, unique identifiers (IDs) are used to tell your device apart from others &ndash; such as an ID stored by a cookie, or your Mobile Ad ID (a unique code set by your mobile operating system). You can opt-out from these IDs being used for ad personalisation; advice on how to do this is provided below.</p> <p>Data that directly identifies you, such as your name, email address or mobile number, will not be used for advertising purposes in your browser or app settings.</p> <h3>Do other companies use cookies, and similar technologies, on your services for advertising purposes?</h3> <p>We and our advertisers work with a range of other companies (&ldquo;<strong>Advertising Partners</strong>&rdquo;) to show you Ads, both personalised and non-personalised. This includes the advertisers&rsquo; agencies, specialist technology platforms that help us with the sale of our ad space and delivery of the Ads, as well as data management platforms that help with analysis and sorting of the data needed to personalise Ads. We also work with specialists to make sure real people are seeing Ads, and to make sure our website is safe.</p> <p>The cookies or other ID sent with the Ads by us and Advertising Partners make personalised advertising possible. They also enable advertisers to monitor the effectiveness of their Ads.</p> <p>Advertising Partners may also use cookies they dropped on your device when you were browsing other (non-BBC) websites. This helps them to show you Ads for things that might be relevant to your interests based on what you looked at on other websites. They also do this to see whether you have already seen a particular ad and to limit how many of their Ads you see across the internet. And if you take part in market research, the research company can record that you have seen a particular ad.</p> </div> </div> </div> <div class="gel-pica"> <div class="gel-explainer--generic"> <h2 class="gel-trafalgar-bold"></h2> <div class="gel-copy"> <p>They may also use data they collect from other sources, or infer from your browsing of other websites, to decide what type of ad might interest you. They may use a technology known as cookie syncing to do this. It works by matching the cookie ID assigned to you with another cookie ID held in another company&rsquo;s database (which is likely to be attributable to you). That cookie may have certain interests and other population statistics information attributed to it.</p> <p>We and our Advertising Partners will also use your device IP address when selecting and delivering advertising to you. This is a numerical address allocated to your device by your Internet Service Provider (ISP) which acts like a postal address in that it allows websites to know where to send their content to you. Your IP address may be static (i.e. remain the same each day) but is more likely to be dynamic, meaning it changes frequently (usually every 24 hours). It may also be used to determine your broad location (e.g. what country you are in).</p> <h3>Am I tracked across my devices for advertising purposes?</h3> <p>Any company that has dropped a cookie on your device can track your online browsing activity. We and our Advertising Partners may attempt to match your browsing activity on one device, such as your laptop, with your browsing activity on another device, such as your smartphone, so that we can limit the number of times you see a particular ad (across your devices) and to personalise the advertising we show you.</p> <p>To do this we may use data, such as your browsing patterns, geo-location and mobile Ad ID and match it with other information about the browser and devices that you appear to use.</p> <h3>Is data from other sources used to personalise advertising?</h3> <p>As explained above, we and our Advertising Partners may use interest and statistical characteristic (demographic) data from data specialists to help us to better predict what might interest you. Advertisers might also use their own marketing data to show you Ads on our online services. This means you may see Ads based on things you&rsquo;ve viewed on other websites and other information they have collected about you.</p> <h3>Do you personalise advertising shown to me on non-BBC services?</h3> <p>Sometimes we buy ad space on other websites and services to run ads for our advertisers. For example, we might show you an ad before a BBC News video on our social media channels. That ad could be personalised in the same way as when you use our services.</p> <h3>Do other publishers personalise advertising shown to me when I access BBC content on their sites?</h3> <p>Our content may be published on websites and apps owned by other companies; a list of these is provided below. These companies may collect and use data about your interactions with our content on their services, including for the purposes of showing you personalised Ads. To find out what they do with your data please refer to the privacy notice and terms of use for each service.</p> <p>&nbsp;</p> </div> <div class="gel-copy"> <section class="gel-table-grid"> <table class="gel-table-grid-2col"> <thead> <tr> <th class="column-1 gel-pica-bold">Company</th> <th class="column-2 gel-pica-bold">Address</th> </tr> </thead> <tbody> <tr> <td class="column-1 gel-pica"><p>MSN</p></td> <td class="column-2 gel-pica"><p><a href="https://web.archive.org/web/20220311211218/https://www.msn.com/">https://www.msn.com/</a></p></td> </tr> <tr> <td class="column-1 gel-pica"><p>Yahoo! Americas</p></td> <td class="column-2 gel-pica"><p><a href="https://web.archive.org/web/20220311211218/https://us.yahoo.com/">https://us.yahoo.com/</a></p></td> </tr> <tr> <td class="column-1 gel-pica"><p>Yahoo! Japan</p></td> <td class="column-2 gel-pica"><p><a href="https://web.archive.org/web/20220311211218/https://www.yahoo.co.jp/">https://www.yahoo.co.jp/</a></p></td> </tr> <tr> <td class="column-1 gel-pica"><p>Apple News</p></td> <td class="column-2 gel-pica"><p><a href="https://web.archive.org/web/20220311211218/https://www.apple.com/uk/apple-news/">https://www.apple.com/uk/apple-news/</a></p></td> </tr> <tr> <td class="column-1 gel-pica"><p>Facebook Instant Articles</p></td> <td class="column-2 gel-pica"><p><a href="https://web.archive.org/web/20220311211218/https://instantarticles.fb.com/">https://instantarticles.fb.com/</a></p></td> </tr> <tr> <td class="column-1 gel-pica"><p>YouTube</p></td> <td class="column-2 gel-pica"><p><a href="https://web.archive.org/web/20220311211218/https://www.youtube.com/">https://www.youtube.com/</a></p></td> </tr> <tr> <td class="column-1 gel-pica"><p>News Republic</p></td> <td class="column-2 gel-pica"><p><a href="https://web.archive.org/web/20220311211218/https://www.news-republic.com/">https://www.news-republic.com/</a></p></td> </tr> <tr> <td class="column-1 gel-pica"><p>Smart News</p></td> <td class="column-2 gel-pica"><p><a href="https://web.archive.org/web/20220311211218/https://www.smartnews.com/en/">https://www.smartnews.com/en/</a></p></td> </tr> <tr> <td class="column-1 gel-pica"><p>AOL</p></td> <td class="column-2 gel-pica"><p><a href="https://web.archive.org/web/20220311211218/https://www.aol.co.uk/">https://www.aol.co.uk/</a></p></td> </tr> <tr> <td class="column-1 gel-pica"><p>Facebook</p></td> <td class="column-2 gel-pica"><p><a href="https://web.archive.org/web/20220311211218/https://en-gb.facebook.com/">https://en-gb.facebook.com/</a></p></td> </tr> </tbody> </table> </section> </div> </div> </div> <div class="gel-pica"> <div class="gel-explainer--generic"> <h2 class="gel-great-primer-bold">Where can I find out more about how ad personalisation works? </h2> <div class="gel-copy"> <p>The advertising industry has developed a number of consumer and business initiatives in Europe, the US and other regions, including those listed below. These initiatives require participating members (which may include our Advertising Partners) to comply with a self-regulatory framework, which set out best practice principles, consumer guides, and opt-out tools.</p> <p><a title="European Interactive Digital Advertising Alliance (EDAA)" href="https://web.archive.org/web/20220311211218/http://www.youronlinechoices.eu/">European Interactive Digital Advertising Alliance (EDAA)</a><br/><a title="Digital Advertising Alliance (DAA)" href="https://web.archive.org/web/20220311211218/http://www.aboutads.info/how-interest-based-ads-work">Digital Advertising Alliance (DAA)</a><br/><a title="Network Advertising Initiative (NAI)" href="https://web.archive.org/web/20220311211218/https://www.networkadvertising.org/understanding-online-advertising">Network Advertising Initiative (NAI)</a></p> <h3>How do you manage the Advertising Partners operating on your services?</h3> <p>We do our best to protect our users&rsquo; data and ensure it is used in accordance with our policies. For example, we work with Advertising Partners that actively participate in recognised self-regulatory frameworks (such as the <a title="EDAA" href="https://web.archive.org/web/20220311211218/http://www.youronlinechoices.com/">EDAA</a>, <a title="DAA" href="https://web.archive.org/web/20220311211218/http://www.aboutads.info/how-interest-based-ads-work">DAA</a> or <a title="NAI" href="https://web.archive.org/web/20220311211218/https://www.networkadvertising.org/understanding-online-advertising">NAI</a>). We also place contractual limits on how data collected about people using our services is used. And we regularly audit our site to look for malware and unsafe cookies.</p> <p>We check every Advertising Partner we work with directly to ensure that it will handle your data responsibly. We list our contracted Advertising Partners below. These Advertising Partners and our direct advertisers may also be permitted to drop on your device cookies or pixels for limited purposes (e.g. for verification of ad serving) provided by pre-approved specialist companies. We check these specialist companies meet our quality standards before we place them on our pre-approved list; and these are listed <a href="https://web.archive.org/web/20220311211218/https://www.bbcglobalnews.com/media/3223/bbc_third_party_-vendor_july19.pdf">here</a>.</p> <p>The data the Advertising Partners collect may also be subject to their privacy policies (click on the Advertising Partner below name to access their privacy policy). You can read their privacy policies to find out more about how they may use your data. You can also opt-out from them using your data for ad personalisation purposes by following the instructions set out below.</p> </div> </div> </div> <div class="gel-pica"> <div class="gel-explainer--generic"> <h2 class="gel-great-primer-bold">Who are your contracted Advertising Partners?</h2> <div class="gel-copy"> <p><em><strong>Ad serving, ad trading and ad personalisation</strong></em><br/><a href="https://web.archive.org/web/20220311211218/https://policies.google.com/technologies/ads"><strong>Google Ad Manager and Google Ads</strong></a><br/><a href="https://web.archive.org/web/20220311211218/http://www.indexexchange.com/privacy/"><strong>Index Exchange</strong></a><br/><a href="https://web.archive.org/web/20220311211218/https://www.openx.com/legal/privacy-policy/"><strong>OpenX</strong></a><br/><a href="https://web.archive.org/web/20220311211218/https://pubmatic.com/legal/privacy-policy/"><strong>Pubmatic</strong></a><br/><a href="https://web.archive.org/web/20220311211218/https://rubiconproject.com/privacy/consumer-online-profile-and-opt-out/"><strong>Rubicon Project</strong></a><br/><a href="https://web.archive.org/web/20220311211218/https://triplelift.com/privacy/"><strong>TripleLift</strong></a><br/><strong><a href="https://web.archive.org/web/20220311211218/https://www.teads.com/privacy-policy/">Teads</a><br/><a href="https://web.archive.org/web/20220311211218/https://www.xandr.com/privacy/platform-privacy-policy/">Xandr</a></strong></p> <p><strong><em>Data management, audience segmentation &amp; cross device tracking</em><br/></strong><strong><a href="https://web.archive.org/web/20220311211218/https://www.lotame.com/about-lotame/privacy/">Lotame</a><br/></strong><strong><a href="https://web.archive.org/web/20220311211218/https://permutive.com/privacy/">Permutive</a><br/><a href="https://web.archive.org/web/20220311211218/https://docs.roku.com/published/userprivacypolicy/en/us">Roku</a></strong></p> <p><em><strong>In-email advertising</strong></em><br/><a href="https://web.archive.org/web/20220311211218/https://www.liveintent.com/services-privacy-policy/"><strong>LiveIntent</strong></a></p> <p><em><strong>Personalised content recommendations</strong></em><br/><strong><a href="https://web.archive.org/web/20220311211218/https://www.outbrain.com/legal/privacy">Outbrain</a><br/><br/><em>Ad performance, measurement and fraud<br/></em><a href="https://web.archive.org/web/20220311211218/https://integralads.com/privacy-policy/">Integral Ad Science (IAS)</a></strong></p> <h3>How can I opt-out from ad personalisation?</h3> <p>If at any time you do not want information about your data, such as your cookie ID and browsing behaviour, to be used for personalised advertising on our websites/apps, you can "opt out" or change your browser settings. You can learn how to do this below. If you opt-out or make any changes to your browser settings, you will continue to see ads that may be less relevant to you. Some data, such as your cookie ID and IP address, will be used to show you a non-personalised ad even if you opt-out. This is to measure the effectiveness of (non-personalised) Ads, to limit how many times you see an ad, and to make sure humans, not robots, are seeing the ad.</p> </div> </div> </div> <div class="gel-pica"> <div class="gel-explainer--generic"> <h2 class="gel-great-primer-bold">Commercial Cookie Settings</h2> <div class="gel-copy"> <p>You can opt-out from the use of your data by us and most of our Advertising Partners to personalise advertising by clicking below.</p> <script type="text/javascript" src="https://web.archive.org/web/20220311211218js_/https://gn-web-assets.api.bbc.com/ngas/vendor/fundingchoices/cmp.js"></script> <p><button style="border: 1px solid #004a77; display: block; width: 100%; font-size: 1rem; font-weight: bold; padding: 20px; background: #004a77; color: white;" onclick="googlefc.callbackQueue.push({'CONSENT_DATA_READY': () => googlefc.showRevocationMessage()});" type="button"> Manage commercial data preferences </button></p> </div> </div> </div> <div class="gel-pica"> <div class="gel-explainer--generic"> <div class="gel-copy"> <p><em><strong>Ad Choices tools for web browsers</strong></em></p> <p>You can opt-out of personalised advertising on our websites and more generally across the internet using the opt-out tools provided by ad industry bodies, including those set out below. However, not all advertisers and Advertising Partners are members or these bodies or participate in their tools. In any case, you can still use your browser settings for these and other advertisers as further explained below.</p> <p><strong><a title="European Interactive Digital Advertising Alliance (EDAA)" href="https://web.archive.org/web/20220311211218/http://www.youronlinechoices.com/">European Interactive Digital Advertising Alliance (EDAA)</a></strong><br/><strong><a title="Digital Advertising Alliance (DAA)" href="https://web.archive.org/web/20220311211218/http://www.aboutads.info/how-interest-based-ads-work">Digital Advertising Alliance (DAA)</a></strong><br/><strong><a title="Network Advertising Initiative (NAI)" href="https://web.archive.org/web/20220311211218/http://www.networkadvertising.org/understanding-online-advertising">Network Advertising Initiative (NAI)</a></strong></p> <p><em><strong>Change your browser settings</strong></em></p> <p>You can also prevent your cookie ID and browsing data being tracked and used for personalised advertising purposes by changing your browser settings, browsing in &lsquo;private mode&rsquo; or by using browser add-ons available on the internet. Visit the relevant support page for your browser, or use the help function on your browse, to learn more:</p> </div> </div> </div> <div class="gel-pica"> <div class="gel-explainer--generic"> <div class="gel-copy"> <p><strong><a title="Apple Safari" href="https://web.archive.org/web/20220311211218/https://support.apple.com/en-gb/guide/safari/manage-cookies-and-website-data-sfri11471/">Apple Safari</a></strong><br/><strong><a title="Google Chrome" href="https://web.archive.org/web/20220311211218/https://support.google.com/chrome/answer/95647?hl=en-GB">Google Chrome</a></strong><br/><strong><a href="https://web.archive.org/web/20220311211218/https://support.microsoft.com/en-us/topic/delete-and-manage-cookies-168dab11-0753-043d-7c16-ede5947fc64d">Microsoft Edge</a></strong><br/><strong><a title="Mozilla Firefox" href="https://web.archive.org/web/20220311211218/https://support.mozilla.org/en-US/kb/delete-browsing-search-download-history-firefox?redirectlocale=en-US&amp;redirectslug=Clear+Recent+History">Mozilla Firefox</a></strong><br/><strong><a title="Opera browser" href="https://web.archive.org/web/20220311211218/http://www.opera.com/help/tutorials/security/privacy/">Opera browser</a></strong></p> <p><em><strong>Change your mobile device settings</strong></em></p> <p>Mobile apps don&rsquo;t use cookies. Instead, different technologies recognise your device and collect information about your app browsing to show you personalised ads. This technology makes use of your &ldquo;Mobile Advertising ID&rdquo;, which is randomly generated by your mobile operating system. Typical IDs are AdID (Android) and IDFA (Apple). Follow the instructions below to reset or turn off this ID.</p> <p>We provide settings for BBC News app users within the EEA to control which individual commercial partners we share data with and for what purposes.</p> <p>To manage this, install the latest version of the app and follow the instructions shown when the app is opened for the first time.</p> <p>EEA visitors can reset their preferences at any time within the app&rsquo;s Settings screen.</p> <p><em>Apple iOS<br/></em>Menu &gt; Settings &gt; Privacy Settings / Do Not Sell My Info<em><br/></em></p> <p><em>Google Android<br/></em>Menu &gt; Settings &gt; Privacy Settings / Do Not Sell My Info</p> <p>For users outside the EEA Apple and Google provide additional methods of limiting ad tracking</p> <p><em>Apple iOS</em><br/>Apple allows users running iOS 14 and above to disable the IDFA the first time the BBC News app is opened.</p> <p>To do this:<br/>1. Ensure you have installed the latest version of the app<br/>2. When opening the app for the first time after updating, select &ldquo;Ask App Not to Track&rdquo; when prompted</p> <p>If you have previously granted permission for the app to track you and wish to change this:</p> <p>Settings &gt; Privacy &gt; Tracking and tap to turn on or off each app displayed in the list of apps that have requested permission to track you</p> <p>Users running older versions of iOS:<br/>1. Go to Settings &gt; Privacy &gt; Advertising.<br/>2. Turn on Limit Ad Tracking.<br/>Visit the Apple <strong><a href="https://web.archive.org/web/20220311211218/https://support.apple.com/en-gb/HT202074">support page</a> </strong>for more information.</p> <p><em>Google Android<br/></em>1. Go to Settings.<br/>2. Select Google in the Accounts section.<br/>3. Select Ads in the Privacy section.<br/>4. Tick Opt out of interest based Ads.<br/>Visit the Google <strong><a href="https://web.archive.org/web/20220311211218/https://support.google.com/ads/answer/2662922?hl=en-GB">support page</a></strong> for more information.</p> </div> </div> </div> <div class="gel-pica"> <div class="gel-explainer--generic"> <h2 class="gel-great-primer-bold">Notice to California users – Do Not Sell My Info</h2> <div class="gel-copy"> <p>As described in this notice, we allow our advertising partners to collect a limited amount of information about you, such as your IP address, device identifiers, location and browsing data to show you targeted advertising. Such sharing of this type of data may constitute a &ldquo;sale&rdquo; of &ldquo;personal information&rdquo; for the purposes of the California Consumer Privacy Act 2018 (&ldquo;CCPA&rdquo;). You can opt-out of any future &ldquo;sale&rdquo; of your personal information by following the instructions detailed in this notice.</p> <p>If you have previously opted-out of the use of your data in accordance with the above, you can opt back in by: (i) changing your Commercial Cookies Settings or by changing any of the other control measures described below in this notice and (ii) confirming your choice by continuing to use our site/app.</p> </div> </div> </div> <!-- Link to Full Account Terms of Use --> <ul class="button-block-article"> <li class="gel-pica-bold icons icon-document" title="Read the full Privacy and Cookies policy"><a href="/web/20220311211218/https://www.bbc.com/usingthebbc/cookies/privacy-policy/" title="Read the full Privacy and Cookies policy">Read the full Privacy and Cookies policy</a></li> </ul> </article> </div> </div> <div class="gel-layout gel-features-opts"> <div class="gel-layout__item"> <h2 class="gel-double-pica gel-mv">Learn more about Privacy and Terms across the BBC</h2> <ul class="gel-feature-list"> <li class="gel-feature-item navp-card-gallery primary-item"> <a class="" href="https://web.archive.org/web/20220311211218/http://www.bbc.co.uk/webwise/guides/about-cookies" aria-label="What are Cookies BBC WEBWISE"> <div class="gel-feature--content"> <div class="gel-feature--image-container"><img src="//web.archive.org/web/20220311211218im_/https://ichef.bbci.co.uk/images/ic/272x153/p0456s82.png" class="img-responsive"/></div> <span class="gel-feature--headline"><h3>What are Cookies</h3></span> <h4 class="gel-feature--attribution">BBC WEBWISE</h4> </div> </a> </li> <li class="gel-feature-item navp-card-gallery secondary-item"> <a class="" href="https://web.archive.org/web/20220311211218/http://www.bbc.co.uk/news/technology-17842925" aria-label="How to make Cookies and influence people BBC NEWS"> <div class="gel-feature--content"> <div class="gel-feature--image-container"><img src="//web.archive.org/web/20220311211218im_/https://ichef.bbci.co.uk/images/ic/272x153/p047ts7j.jpg" class="img-responsive"/></div> <span class="gel-feature--headline"><h3>How to make Cookies and influence people</h3></span> <h4 class="gel-feature--attribution">BBC NEWS</h4> </div> </a> </li> <li class="gel-feature-item navp-card-gallery tertiary-item"> <a class="" href="https://web.archive.org/web/20220311211218/https://production.bbc.co.uk/guides/z3mnmnb" aria-label="Should we try to regulate the internet? BBC iWONDER"> <div class="gel-feature--content"> <div class="gel-feature--image-container"><img src="//web.archive.org/web/20220311211218im_/https://ichef.bbci.co.uk/images/ic/272x153/p0452pqy.png" class="img-responsive"/></div> <span class="gel-feature--headline"><h3>Should we try to regulate the internet?</h3></span> <h4 class="gel-feature--attribution">BBC iWONDER</h4> </div> </a> </li> <li class="gel-feature-item navp-card-gallery quaternary-item"> <a class="" href="https://web.archive.org/web/20220311211218/http://www.bbc.co.uk/programmes/b036tsnc" aria-label="Radio 4 series - Privacy Under Pressure BBC RADIO"> <div class="gel-feature--content"> <div class="gel-feature--image-container"><img src="//web.archive.org/web/20220311211218im_/https://ichef.bbci.co.uk/images/ic/272x153/p043l69c.png" class="img-responsive"/></div> <span class="gel-feature--headline"><h3>Radio 4 series - Privacy Under Pressure</h3></span> <h4 class="gel-feature--attribution">BBC RADIO</h4> </div> </a> </li> </ul> </div> </div> <div class="gel-layout"> <!-- Dynamic Dropdown --> <div class="gel-layout__item"> <div class="gel-language-opts bg-color-white gel-long-primer"><span>Choose language: </span><a class="gel-long-primer-bold" href="/web/20220311211218/https://www.bbc.com/usingthebbc/cookies/how-does-the-bbc-use-cookies-for-advertising/cy/" title="Cymraeg">Cymraeg</a><a class="gel-long-primer-bold" href="/web/20220311211218/https://www.bbc.com/usingthebbc/cookies/how-does-the-bbc-use-cookies-for-advertising/gd/" title="Gàidhlig">G&agrave;idhlig</a></div> </div> </div> </div> </section> </div> <div id="orb-footer" class="orb-footer" dir="ltr"> <div id="navp-orb-footer-promo"></div><aside role="complementary"><div id="orb-aside" class="orb-nav-sec b-r b-g-p"><div class="orb-footer-inner" role="navigation" aria-label="BBC"><h2 class="orb-footer-lead">Explore the BBC</h2><div class="orb-footer-primary-links"><ul><li class="orb-nav-home"><a href="https://web.archive.org/web/20220311211218/https://www.bbc.co.uk/"><span>Home</span></a></li><li class="orb-nav-news"><a href="https://web.archive.org/web/20220311211218/https://www.bbc.co.uk/news"><span>News</span></a></li><li class="orb-nav-sport"><a href="https://web.archive.org/web/20220311211218/https://www.bbc.co.uk/sport"><span>Sport</span></a></li><li class="orb-nav-weather"><a href="https://web.archive.org/web/20220311211218/https://www.bbc.co.uk/weather"><span>Weather</span></a></li><li class="orb-nav-iplayer"><a href="https://web.archive.org/web/20220311211218/https://www.bbc.co.uk/iplayer"><span>iPlayer</span></a></li><li class="orb-nav-sounds"><a href="https://web.archive.org/web/20220311211218/https://www.bbc.co.uk/sounds"><span>Sounds</span></a></li><li class="orb-nav-bitesize"><a href="https://web.archive.org/web/20220311211218/https://www.bbc.co.uk/bitesize"><span>Bitesize</span></a></li><li class="orb-nav-cbeebies"><a href="https://web.archive.org/web/20220311211218/https://www.bbc.co.uk/cbeebies"><span>CBeebies</span></a></li><li class="orb-nav-cbbc"><a href="https://web.archive.org/web/20220311211218/https://www.bbc.co.uk/cbbc"><span>CBBC</span></a></li><li class="orb-nav-food"><a href="https://web.archive.org/web/20220311211218/https://www.bbc.co.uk/food"><span>Food</span></a></li></ul></div></div></div></aside><footer role="contentinfo"><div id="orb-contentinfo" class="orb-nav-sec b-r b-g-p"><script>window.orb = window.orb || {}; window.orb.worldwideFooterlinks = '<li class="orb-footer-ads"><a href="https://web.archive.org/web/20220311211218/https://www.bbcglobalnews.com/">Advertise with us<' + '/a><' + '/li><li class="orb-footer-adchoices"><a href="https://web.archive.org/web/20220311211218/https://www.bbc.com/usingthebbc/cookies/how-does-the-bbc-use-cookies-for-advertising/">AdChoices / Do Not Sell My Info<' + '/a><' + '/li>';</script><div class="orb-footer-inner"><div><ul><li class="orb-footer-terms"><a href="https://web.archive.org/web/20220311211218/https://www.bbc.co.uk/usingthebbc/terms/">Terms of Use</a></li><li class="orb-footer-about"><a href="https://web.archive.org/web/20220311211218/https://www.bbc.co.uk/aboutthebbc">About the BBC</a></li><li class="orb-footer-privacy"><a href="https://web.archive.org/web/20220311211218/https://www.bbc.co.uk/usingthebbc/privacy/">Privacy Policy</a></li><li class="orb-footer-cookies"><a href="https://web.archive.org/web/20220311211218/https://www.bbc.co.uk/usingthebbc/cookies/">Cookies</a></li><li class="orb-footer-accessibility"><a href="https://web.archive.org/web/20220311211218/https://www.bbc.co.uk/accessibility/">Accessibility Help</a></li><li class="orb-footer-parental"><a href="https://web.archive.org/web/20220311211218/https://www.bbc.co.uk/guidance">Parental Guidance</a></li><li class="orb-footer-contact"><a href="https://web.archive.org/web/20220311211218/https://www.bbc.co.uk/contact">Contact the BBC</a></li><li class="orb-footer-newsletter"><a href="https://web.archive.org/web/20220311211218/https://www.bbc.co.uk/bbcnewsletter">Get Personalised Newsletters</a></li></ul><small><em class="orb-hilight">Copyright &copy; 2022 BBC.</em> The BBC is not responsible for the content of external sites. <span class="orb-footer-links"><a href="https://web.archive.org/web/20220311211218/https://www.bbc.co.uk/editorialguidelines/guidance/feeds-and-links" class="orb-hilight">Read about our approach to external linking.</a></span></small></div></div></div></footer></div><script type="text/javascript" src="https://web.archive.org/web/20220311211218js_/https://static.files.bbci.co.uk/orbit/1b6b61cd4d5f792da2216b606c5dfe73/js/redirect.bundle.js" async=""></script><script type="text/javascript" src="https://web.archive.org/web/20220311211218js_/https://static.files.bbci.co.uk/orbit/1b6b61cd4d5f792da2216b606c5dfe73/js/performance.bundle.js" data-release="3.0.0-1870.883507a1" data-ux="orb" data-reqjs="" async=""></script> <script id="orb-js-script" data-assetpath="https://static.files.bbci.co.uk/orbit/1b6b61cd4d5f792da2216b606c5dfe73/" src="https://web.archive.org/web/20220311211218js_/https://static.files.bbci.co.uk/orbit/1b6b61cd4d5f792da2216b606c5dfe73/js/orb.min.js"></script> <script type="module" src="https://web.archive.org/web/20220311211218jm_/https://static.files.bbci.co.uk/orbit/1b6b61cd4d5f792da2216b606c5dfe73/js/orbit.js" async=""></script><script nomodule="" type="text/javascript" src="https://web.archive.org/web/20220311211218js_/https://static.files.bbci.co.uk/orbit/1b6b61cd4d5f792da2216b606c5dfe73/js/legacyOrbit.js" async=""></script> <script type="text/javascript">/*<![CDATA[*/ (function() { function loadJs(url) { var script = document.createElement('script'); script.type = 'text/javascript'; script.src = url; script.async = true; document.getElementsByTagName('body')[0].appendChild(script); } window.bbcuser.isUKCombined().then(function(isUK) { if (isUK) { loadJs('https://web.archive.org/web/20220311211218/https://static.files.bbci.co.uk/orbit/1b6b61cd4d5f792da2216b606c5dfe73/js/edr.min.js'); } }); })(); /*]]>*/</script> <script type="text/javascript">require.config({ paths: { "mybbc/templates": '//web.archive.org/web/20220311211218/https://mybbc.files.bbci.co.uk/notification-ui/4.3.9/templates', "mybbc/notifications": '//web.archive.org/web/20220311211218/https://mybbc.files.bbci.co.uk/notification-ui/4.3.9/js' } }); require(['mybbc/notifications/NotificationsMain', 'idcta/idcta-1'], function (NotificationsMain, idcta) { var loadNotifications = function (isUK) { if (isUK) { window.bbcpage.loadCSS('//web.archive.org/web/20220311211218/https://mybbc.files.bbci.co.uk/notification-ui/4.3.9/css/main.min.css').then(function() { NotificationsMain.run(idcta, '//web.archive.org/web/20220311211218/https://mybbc.files.bbci.co.uk/notification-ui/4.3.9/'); }); } }; window.bbcuser.isUKCombined().then(function(isUK) { loadNotifications(isUK); }); });</script> <script type="module">if (window.bbcuser && window.bbcuser.isUKCombined) { bbcuser.isUKCombined().then(function (isUK) { if (isUK) { import('https://web.archive.org/web/20220311211218/https://nav.files.bbci.co.uk/searchbox/42b955eee75a305e2e20ce2ce745e772//js/search-suggest.js').then(drawer => { drawer.setupSearchDrawer({ searchboxAppStaticPrefix: 'https://web.archive.org/web/20220311211218/https://nav.files.bbci.co.uk/searchbox/42b955eee75a305e2e20ce2ce745e772/', variant: 'default', }); }); } }); }</script> <script type="text/javascript" src="https://web.archive.org/web/20220311211218js_/https://nav.files.bbci.co.uk/navpromo/34f98a4c8573fabed16dc8acea28feb8/js/footerpromo.js" data-base="https://navpromo.api.bbci.co.uk" data-variant="" async=""></script> <script type="text/javascript">window.COOKIES_STATIC_HOST="https://web.archive.org/web/20220311211218/https://static.files.bbci.co.uk/cookies/6868f40b6841deedfcf9895de775e1ab/cookie-banner/cookie-prompt/"</script><script src="https://web.archive.org/web/20220311211218js_/https://static.files.bbci.co.uk/cookies/6868f40b6841deedfcf9895de775e1ab/cookie-banner/cookie-banners.bundle.js" async=""></script> <script src="https://web.archive.org/web/20220311211218js_/https://nav.files.bbci.co.uk//user-activity-helper/a8196ecdef2d10b40b1afc53b833773a/js/detectview.bundle.js" async=""></script><script type="text/javascript">"use strict";window.__reverb.__reverbLoadedPromise.then(function(e){return e.initialise().then(function(){return e.viewEvent()})},function(){console.log("Failed to load reverb. No event sent")});</script> </body> </html><!-- FILE ARCHIVED ON 21:12:18 Mar 11, 2022 AND RETRIEVED FROM THE INTERNET ARCHIVE ON 19:47:08 Dec 02, 2024. JAVASCRIPT APPENDED BY WAYBACK MACHINE, COPYRIGHT INTERNET ARCHIVE. ALL OTHER CONTENT MAY ALSO BE PROTECTED BY COPYRIGHT (17 U.S.C. SECTION 108(a)(3)). --> <!-- playback timings (ms): captures_list: 0.94 exclusion.robots: 0.044 exclusion.robots.policy: 0.027 esindex: 0.014 cdx.remote: 13.56 LoadShardBlock: 192.217 (6) PetaboxLoader3.datanode: 191.792 (7) load_resource: 178.666 PetaboxLoader3.resolve: 140.062 -->

Pages: 1 2 3 4 5 6 7 8 9 10