יצירת צופן חד-פעמי (nonce)
"אף" היא מחרוזת מוצפנת יחידה שנוצרה על ידי PAL באמצעות הפקודה NonceLoader
.
לפי הדרישות ב-PAL SDK, כל בקשה של סטרימינג חדשה תצורף מלווה
חד-פעמיות (nonce). עם זאת, ניתן לעשות שימוש חוזר בצפנים חד-פעמיים (nonce) עבור כמה בקשות להצגת מודעות במסגרת
אותו זרם. כדי לראות אפליקציה לדוגמה שמשתמשת ב-PAL ליצירת צופן חד-פעמי, צריך להוריד
דוגמת ה-HTML5 מ-GitHub.
כדי ליצור צופן חד-פעמי באמצעות PAL SDK, צריך ליצור קובץ HTML ולהוסיף את הקוד הבאים:
pal.html
<html>
<head></head>
<body>
<div id="placeholder-video"></div>
<button id="generate-nonce">Generate Nonce</button>
<script src="//imasdk.googleapis.com/pal/sdkloader/pal.js"></script>
<script src="pal.js"></script>
</body>
</html>
לאחר מכן, יוצרים קובץ JavaScript ומוסיפים את הפרטים הבאים:
pal.js
let videoElement;
let nonceLoader;
let managerPromise;
let nonceManager;
let storageConsent = true;
let playbackStarted = false;
/**
* A placeholder for the publisher's own method of obtaining user
* consent, either by integrating with a CMP or based on other
* methods the publisher chooses to handle storage consent.
* @return {boolean} Whether storage consent has been given.
*/
function getConsentToStorage() {
return storageConsent;
}
/**
* Initializes the PAL loader.
*/
function init() {
const videoElement = document.getElementById('placeholder-video');
videoElement.addEventListener('mousedown', (e) => void onVideoTouch(e));
videoElement.addEventListener('touchstart', (e) => void onVideoTouch(e));
videoElement.addEventListener('play', () => {
if (!playbackStarted) {
sendPlaybackStart();
playbackStarted = true;
}
});
videoElement.addEventListener('ended', () => void sendPlaybackEnd());
videoElement.addEventListener('error', () => {
console.log("Video error: " + videoElement.error.message);
sendPlaybackEnd();
});
document.getElementById('generate-nonce')
.addEventListener('click', generateNonce);
// The default value for `allowStorage` is false, but can be
// changed once the appropriate consent has been gathered.
const consentSettings = new goog.pal.ConsentSettings();
consentSettings.allowStorage = getConsentToStorage();
nonceLoader = new goog.pal.NonceLoader(consentSettings);
}
/**
* Generates a nonce with sample arguments and logs it to the console.
*
* The NonceRequest parameters set here are example parameters.
* You should set your parameters based on your own app characteristics.
*/
function generateNonce() {
const request = new goog.pal.NonceRequest();
request.adWillAutoPlay = true;
request.adWillPlayMuted = false;
request.continuousPlayback = false;
request.descriptionUrl = 'https://example.com';
request.iconsSupported = true;
request.playerType = 'Sample Player Type';
request.playerVersion = '1.0';
request.ppid = 'Sample PPID';
request.sessionId = 'Sample SID';
// Player support for VPAID 2.0, OMID 1.0, and SIMID 1.1
request.supportedApiFrameworks = '2,7,9';
request.url = 'https://developers.google.com/ad-manager/pal/html5';
request.videoHeight = 480;
request.videoWidth = 640;
managerPromise = nonceLoader.loadNonceManager(request);
managerPromise
.then((manager) => {
nonceManager = manager;
console.log('Nonce generated: ' + manager.getNonce());
})
.catch((error) => {
console.log('Error generating nonce: ' + error);
});
}
init();
צירוף צופן חד-פעמי (nonce) לבקשה להצגת מודעה
כדי להשתמש בצפנים חד-פעמיים שנוצרו, צריך להוסיף את תג המודעה לפרמטר givn
ואת התג
לפני שליחת בקשות להצגת מודעות.
pal.js
/**
* The ad tag for your ad request, for example:
* https://pubads.g.doubleclick.net/gampad/ads?sz=640x480&iu=/124319096/external/single_ad_samples&ciu_szs=300x250&impl=s&gdfp_req=1&env=vp&output=vast&unviewed_position_start=1&cust_params=deployment%3Ddevsite%26sample_ct%3Dlinear&correlator=
*
* For more sample ad tags, see https://developers.google.com/interactive-media-ads/docs/sdks/html5/client-side/tags
*/
const DEFAULT_AD_TAG = "Your ad tag";
...
managerPromise = nonceLoader.loadNonceManager(request);
managerPromise
.then((manager) => {
nonceManager = manager;
console.log('Nonce generated: ' + manager.getNonce());
// Append the nonce to the ad tag URL.
makeAdRequest(DEFAULT_AD_TAG + "&givn=" + nonceString);
})
מעקב אחר אירועי הפעלה
לבסוף, עליכם להטמיע גורמים שונים שמטפלים באירועים בשביל הנגן שלכם. עבור למטרות בדיקה, ניתן לצרף אותם לאירועי לחיצה על לחצנים, אבל באירועי הנגן המתאימים:
pal.js
/**
* Informs PAL that an ad click has occurred. How this function is
* called will vary depending on your ad implementation.
*/
function sendAdClick() {
nonceManager?.sendAdClick();
}
/**
* Handles the user touching on the video element, passing it to PAL.
* @param {!TouchEvent|!MouseEvent} touchEvent
*/
function onVideoTouch(touchEvent) {
nonceManager?.sendAdTouch(touchEvent);
}
/** Informs PAL that playback has started. */
function sendPlaybackStart() {
nonceManager?.sendPlaybackStart();
}
/** Informs PAL that playback has ended. */
function sendPlaybackEnd() {
nonceManager?.sendPlaybackEnd();
}
בהטמעה שלך, צריך להפעיל את הפקודה sendPlaybackStart
ברגע שהסרטון
מתחיל. צריכה להתבצע קריאה אל sendPlaybackEnd
ברגע שהסרטון
מסתיים. יש לקרוא אל sendAdClick
בכל פעם
לוחץ על מודעה. צריך להפעיל את sendAdTouch
בכל אינטראקציה עם מגע
עם הנגן.
(אופציונלי) שליחת אותות של Google Ad Manager דרך שרתי מודעות של צד שלישי
מגדירים את הבקשה של שרת המודעות של הצד השלישי ל-Ad Manager.
צריך להגדיר את שרת המודעות של הצד השלישי כך שיכלול את הצופן החד-פעמי (nonce) של השרת בקשה ל-Ad Manager. דוגמה לתג מודעה שמוגדר בתוך שרת מודעות של צד שלישי:
'https://pubads.serverside.net/gampad/ads?givn=%%custom_key_for_google_nonce%%&...'
לפרטים נוספים, אפשר לעיין במאמר הטמעה בצד השרת של Google Ad Manager guide.
מערכת Ad Manager מחפשת את givn=
כדי לזהות את ערך הקוד החד-פעמי (nonce). המודעה של הצד השלישי
השרת צריך לתמוך במאקרו מסוים משל עצמו, כמו
%%custom_key_for_google_nonce%%
, ומחליפים אותו בפרמטר השאילתה צופן חד-פעמי (nonce)
שסיפקת בשלב הקודם. מידע נוסף על האופן שבו ניתן לעשות זאת
צריכים להיות זמינים במסמכים של שרת המודעות של הצד השלישי.
זהו! עכשיו הפרמטר nonce יופץ מ-PAL SDK. דרך השרתים המתווכים, ואז אל Google Ad Manager. הפעולה הזאת מאפשרת מונטיזציה משופרת באמצעות Google Ad Manager.