javascript Google广告管理系统/ DFP广告管理系统:集成代码:NMG
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了javascript Google广告管理系统/ DFP广告管理系统:集成代码:NMG相关的知识,希望对你有一定的参考价值。
/*
####################################################################
### ORACLE BLUEKAI : DFP : JSON Return integration : PART 2 OF 2 ###
####################################################################
Author : roshan.gonsalkorale@oracle.com
Notes:
- See PART 1 code for full details
- This code will actually declare the BlueKai data as key-value pairs to DFP
Instructions:
- Deploy this code within your "googletag.cmd.push()" function code
- Ensure it is deployed before any "googletag.defineSlot()" code in GPT to ensure the BlueKai data is declared as key-value pairs in your ad slots
*/
// Generate BlueKai data as key-value pairs
window.bk_dfp_integration = window.bk_dfp_integration || {};
window.bk_dfp_integration.functions = window.bk_dfp_integration.functions || {};
if(typeof bk_dfp_integration.functions.sendDfp === "function"){
bk_dfp_integration.functions.sendDfp();
}
/*
####################################################################
### ORACLE BLUEKAI : DFP : JSON Return integration : PART 1 OF 2 ###
####################################################################
Author : roshan.gonsalkorale@oracle.com
Notes:
- This will query BlueKai for visitor profile data (campaign IDs and Category IDs) and send to DFP (via GPT syntax https://developers.google.com/doubleclick-gpt/reference#googletag.PubAdsService_setTargeting)
- The code aims to dispatch BlueKai profile data to DFP (via GPT syntax) by either finding it via the BlueKai API or using a local storage copy
- It aims to call DFP as quickly as possible
- All code is asynchronous
- This relies on the PART 2 code which will needs to be inserted in-line into the GPT ad slot code
Debugger:
- add 'bk_dfp_logger=true' as a query-string parameter in the URL and check the console logs
- This will also force a key-value pair of "bkdebugger=true" which you can query in DFP
Implementation Instructions:
- Required DFP to be implemented via Google Publisher Tag (https://developers.google.com/doubleclick-gpt/)
- Host this code in a file on your website and load synchronously in the <head>
- Implement it BEFORE any Google Publisher Tag code (GPT)
- Implement it BEFORE any the BlueKai Site Optimisation tag
Code Workflow:
- If visitor profile data hasn't already been returned:
- it will check for it in local storage and send it also call BlueKai again for the data
- If visitor profile data has been returned:
- it will parse that
- Whenever BlueKai profile data is found:
- it will store it for reference in localstorage
- it will call send the data to DFP (via GPT syntax)
- If the data has already been send to DFP, it won't do it again
- Use the debugging to check the workflow
*/
// CONFIG : EDIT THIS PART
// Create object to store functions
window.bk_dfp_integration = window.bk_dfp_integration || {};
window.bk_dfp_integration.functions = window.bk_dfp_integration.functions || {};
window.bk_dfp_integration.data = window.bk_dfp_integration.data || {};
window.bk_dfp_integration.bluekai_jsonreturn_id = "80225"; // Your JSON Return Container ID
window.bk_dfp_integration.wait_in_ms = 1000; // How long to wait before asking BlueKai for the latest categories and firing data to DFP (default 5000ms)
/*
##########################################################################################
DO NOT EDIT BELOW THIS LINE
##########################################################################################
*/
// FUNCTION : Local Storage Send
bk_dfp_integration.functions.localstorage_sender = function(data, name_of_var) {
if (typeof(Storage) !== "undefined") {
bk_dfp_integration.functions.logger("BLUEKAI DFP : LOCAL STORAGE : storing '" + JSON.stringify(data) + "' as '" + name_of_var + "' in local storage");
localStorage.setItem(name_of_var, JSON.stringify(data));
} else {
bk_dfp_integration.functions.logger("BLUEKAI DFP : LOCAL STORAGE : SEND DATA : HTML 5 NOT SUPPORTED");
return "no storage"; // HTML 5 NOT SUPPORTED
}
}
// FUNCTION : Local Storage Retrieve
bk_dfp_integration.functions.localstorage_retriever = function(name_of_var) {
if (typeof(Storage) !== "undefined") {
return JSON.parse(localStorage.getItem(name_of_var));
} else {
bk_dfp_integration.functions.logger("BLUEKAI DFP : LOCAL STORAGE : SEND DATA : HTML 5 NOT SUPPORTED");
return "no storage"; // HTML 5 NOT SUPPORTED
}
}
// FUNCTION : Local Storage fallback
bk_dfp_integration.functions.localstorage_fallback = function() {
bk_dfp_integration.functions.logger("BLUEKAI DFP : Local Storage : attempting fallback");
// category IDs
if (bk_dfp_integration.functions.localstorage_retriever("bk_cat_ids") !== "no storage") {
window.bk_dfp_integration.data.bk_category_ids = bk_dfp_integration.functions.localstorage_retriever("bk_cat_ids");
window.bk_dfp_integration.data.bk_campaign_ids = bk_dfp_integration.functions.localstorage_retriever("bk_campaign_ids");
if (!window.bk_dfp_integration.data.bk_campaign_ids) {
bk_dfp_integration.functions.logger("BLUEKAI DFP : Local Storage : no campaign IDs available in local storage");
} else {
bk_dfp_integration.functions.logger("BLUEKAI DFP : Local Storage : Retrieved following 'bk_campaign_ids' from local storage : " + window.bk_dfp_integration.data.bk_campaign_ids);
}
if (!window.bk_dfp_integration.data.bk_category_ids) {
bk_dfp_integration.functions.logger("BLUEKAI DFP : Local Storage : no category IDs available in local storage");
} else {
bk_dfp_integration.functions.logger("BLUEKAI DFP : Local Storage : Retrieved following 'bk_category_ids' from local storage : " + window.bk_dfp_integration.data.bk_category_ids);
}
}
}
// FUNCTION : Check for debugger
bk_dfp_integration.functions.debugCheck = function(){
if (document.location.href.indexOf('bk_dfp_logger=true') > -1) {
//session cookie
document.cookie = "bk_dfp_logger=" + "true" +
";path=/;domain=" + document.domain + ";expires=";
}
if (document.cookie.indexOf('bk_dfp_logger=true') > -1){
var debugStatus = true;
} else {
var debugStatus = false;
}
return debugStatus;
}
// FUNCTION : Logger
bk_dfp_integration.functions.logger = function(message, attribute_object) {
if (bk_dfp_integration.functions.debugCheck() === true) {
if (typeof attribute_object === "undefined") {
console.log(message);
} else {
for (var varName in attribute_object) {
console.log(message + varName + "=" + attribute_object[varName]);
}
}
}
};
// FUNCTION : Parse BlueKai data and send to DFP
bk_dfp_integration.functions.parseBkResults = function() {
// Parse BlueKai Campaign Results
window.bk_dfp_integration.data.bk_category_ids = [];
window.bk_dfp_integration.data.bk_campaign_ids = [];
if (typeof(bk_results) != "undefined") {
if (typeof(bk_results.campaigns[0]) != "undefined") {
bk_dfp_integration.functions.logger("BLUEKAI DFP : 'bk_results' object found");
for (var i = 0; i < bk_results.campaigns.length; i++) {
window.bk_dfp_integration.data.bk_campaign_ids.push(bk_results.campaigns[i].campaign.toString());
for (var j = 0; j < bk_results.campaigns[i].categories.length; j++) {
if (typeof(bk_results.campaigns[i].categories[j].categoryID) != "undefined") {
window.bk_dfp_integration.data.bk_category_ids.push(bk_results.campaigns[i].categories[j].categoryID.toString());
}
}
}
// Send data to Local Storage
bk_dfp_integration.functions.localstorage_sender(window.bk_dfp_integration.data.bk_category_ids, "bk_cat_ids");
bk_dfp_integration.functions.localstorage_sender(window.bk_dfp_integration.data.bk_campaign_ids, "bk_campaign_ids");
} else {
bk_dfp_integration.functions.logger("BLUEKAI DFP : No campaigns object");
}
}
}
bk_dfp_integration.functions.arrayStringConvert = function(inputArray){
function toType(obj) {
return ({}).toString.call(obj).match(/\s([a-zA-Z]+)/)[1].toLowerCase();
}
if (toType(inputArray) === "array"){
var newArray = inputArray.slice(0);
for (var i = 0; i < newArray.length; i++) {
newArray[i] = newArray[i].toString();
}
return newArray;
} else {
return inputArray;
}
}
bk_dfp_integration.functions.sendDfp = function() {
if (!window.bk_dfp_integration.data.dfp_sent) {
// Fire Test Var for debugging
if(bk_dfp_integration.functions.debugCheck() === true){
googletag.pubads().setTargeting('bkdebugger', "true");
bk_dfp_integration.functions.logger("BLUEKAI DFP : DFP SEND : EXECUTED : Declared Targeting Parameter 'bkdebugger' = 'true' (see syntax below)");
bk_dfp_integration.functions.logger("BLUEKAI DFP : DFP SEND : EXECUTED : Syntax 'googletag.pubads().setTargeting('bkdebugger', 'true');'");
}
// Fire Campaign IDs if available
if(window.bk_dfp_integration.data.bk_campaign_ids){
var bkcampaignids = bk_dfp_integration.functions.arrayStringConvert(window.bk_dfp_integration.data.bk_campaign_ids);
googletag.pubads().setTargeting('bkcampids', bkcampaignids);
bk_dfp_integration.functions.logger("BLUEKAI DFP : DFP SEND : EXECUTED : Declared Targeting Parameter 'bkcampids' with following array : " + bkcampaignids + " (see syntax below)");
bk_dfp_integration.functions.logger("BLUEKAI DFP : DFP SEND : EXECUTED : Syntax 'googletag.pubads().setTargeting('bkcampids', bkcampaignids);'");
window.bk_dfp_integration.data.dfp_sent = true; // flag so data not send twice
} else {
bk_dfp_integration.functions.logger("BLUEKAI DFP : DFP SEND : NOT-QUEUED : No Campaign IDs available so Campaign IDs not sent");
}
// Fire Category IDs if available
if(window.bk_dfp_integration.data.bk_category_ids){
var bkcatids = bk_dfp_integration.functions.arrayStringConvert(window.bk_dfp_integration.data.bk_category_ids);
googletag.pubads().setTargeting('bkcatids', bkcatids);
bk_dfp_integration.functions.logger("BLUEKAI DFP : DFP SEND : EXECUTED : Declared Targeting Parameter 'bkcatids' with following array : " + bkcatids + " (see syntax below)");
bk_dfp_integration.functions.logger("BLUEKAI DFP : DFP SEND : EXECUTED : Syntax 'googletag.pubads().setTargeting('bkcatids', bkcatids);'");
window.bk_dfp_integration.data.dfp_sent = true; // flag so data not send twice
} else {
bk_dfp_integration.functions.logger("BLUEKAI DFP : DFP SEND : NOT-QUEUED : No Category IDs available so category IDs not sent");
}
} else {
bk_dfp_integration.functions.logger("BLUEKAI DFP : DFP SEND : NOT SENT : data already declared");
}
}
// FUNCTION : Call BlueKai
bk_dfp_integration.functions.callBlueKai = function(bluekai_jsonreturn_id) {
// Check if JSON return tag and bk_results already there
if ((window.bk_results) && (document.head && document.head.innerHTML.indexOf(bluekai_jsonreturn_id + '?ret=js') > -1) || (document.body && document.body.innerHTML.indexOf(bluekai_jsonreturn_id + '?ret=js') > -1)) {
bk_dfp_integration.functions.logger("BLUEKAI DFP : JSON Return tag found");
bk_dfp_integration.functions.logger("BLUEKAI DFP : Parsing 'bk_results' directly");
bk_dfp_integration.functions.parseBkResults(); // Parse results (don't call JSON ret tag)
} else {
bk_dfp_integration.functions.logger("BLUEKAI DFP : JSON Return tag NOT found");
bk_dfp_integration.functions.localstorage_fallback(); // Grab from local storage
bk_dfp_integration.functions.logger("BLUEKAI DFP : Waiting " + window.bk_dfp_integration.wait_in_ms + "ms before calling JSON Return Tag");
setTimeout(function() {
bk_dfp_integration.functions.logger("BLUEKAI DFP : Calling JSON Return tag");
var bk_json_ret = document.createElement("script");
bk_json_ret.type = "text/javascript";
bk_json_ret.onload = function() {
bk_dfp_integration.functions.logger("BLUEKAI DFP : JSON Return tag loaded");
bk_dfp_integration.functions.logger("BLUEKAI DFP : Parsing 'bk_results'");
bk_dfp_integration.functions.parseBkResults(); // Parse results
};
bk_dfp_integration.functions.parseBkResults(); // Parse results
bk_json_ret.src = "//tags.bluekai.com/site/" + bluekai_jsonreturn_id + "?ret=js&limit=1&integration=dfp";
document.head.appendChild(bk_json_ret);
},
window.bk_dfp_integration.wait_in_ms);
}
};
// RUN CODE
bk_dfp_integration.functions.callBlueKai(window.bk_dfp_integration.bluekai_jsonreturn_id);
以上是关于javascript Google广告管理系统/ DFP广告管理系统:集成代码:NMG的主要内容,如果未能解决你的问题,请参考以下文章
JavaScript 跨域Google Analytics广告系列转置
适用于 JavaScript 的 Google IMA SDK 叠加层和全槽广告参考