Google 게시자 태그에 대한 Audience Manager 코드 audience-manager-code-for-google-publisher-tags

AamGpt은(는) Audience Manager 쿠키 데이터를 읽고 해당 정보를 Google Publisher Tags에 보내는 JavaScript 함수입니다.

NOTE
UUID 및 대상 쿠키에서 Audience Manager 쿠키 데이터를 읽는 자체 코드가 있는 경우에는 이 함수가 필요하지 않습니다.

샘플 코드

AamGpt 코드를 페이지의 맨 위에 배치합니다. <head> 코드 블록 내에 이상적으로 배치하십시오. AamGpt 코드는 아래에서 사용할 수 있습니다.

var AamGpt = {
 strictEncode: function(str){
  return encodeURIComponent(str).replace(/[!'()]/g, escape).replace(/\*/g, "%2A");
 },
 getCookie: function(c_name)
 {
  var i,x,y,c=document.cookie.split(";");
  for (i=0;i<c.length;i++)
  {
   x=c[i].substr(0,c[i].indexOf("="));
   y=c[i].substr(c[i].indexOf("=")+1);
   x=x.replace(/^\s+|\s+$/g,"");
   if (x==c_name)
   {
    return unescape(y);
   }
  }
 },
 getKey: function(c_name){
  var c=this.getCookie(c_name);
  c=this.strictEncode(c);
  if(typeof c != "undefined" && c.match(/\w+%3D/)){
   var cList=c.split("%3D");
   if(typeof cList[0] != "undefined" && cList[0].match(/\w+/))
   {
    return cList[0];
   }
  }
 },
 getValues: function(c_name){
  var c=this.getCookie(c_name);
  c=this.strictEncode(c);
  if(typeof c != "undefined" && c.match(/\w+%3D\w+/)){
   var cList=c.split("%3D");
   if(typeof cList[1] != "undefined" && cList[1].match(/\w+/))
   {
    var vList=cList[1].split("%2C");
    if(typeof vList[0] != "undefined")
    {
     return vList;
    } else {
     return null;
    }
   } else {
    return null;
   }
  } else {
   return null;
  }
 }
};
recommendation-more-help
de293fbf-b489-49b0-8daa-51ed303af695