ज़रूरी शर्तें
Cast के लिए PAL SDK टूल को इंटिग्रेट करने और उसकी जांच करने के लिए, आपको इनकी ज़रूरत होगी:
नॉन्स जनरेट करने के लिए, रिसीवर ऐप्लिकेशन संदेश इंटरसेप्शन.
मैसेज पाने वाले व्यक्ति को लोड करने के लिए, भेजने वाले का ऐप्लिकेशन कोई विज्ञापन अनुरोध वाला कॉन्टेंट.
PAL SDK टूल को इंटिग्रेट करने के लिए, आपको सिर्फ़ रिसीवर ऐप्लिकेशन को अपडेट करना होगा कास्ट कमांड और कंट्रोल (सीएसी) टूल का इस्तेमाल कर सकते हैं का इस्तेमाल अपने रिसीवर को टेस्ट करने के लिए किया है.
हर चरण के आखिर में, सैंपल को चलाने के लिए, आपको पहले अपना वेब लॉन्च करना होगा. सीएसी में कॉन्टेंट पाने वाला ऐप्लिकेशन टूल चुनें. इसके बाद, लोड करने का अनुरोध करें.
नॉन्स जनरेट करें
एक "संज्ञा" एक ऐसी स्ट्रिंग है जिसे एन्क्रिप्ट (सुरक्षित) किया जाता है. इसे PAL ने
NonceManager
. कॉन्टेंट बनाने
NonceManager
को जनरेट करने का तरीका
loadNonceManager
तरीके का इस्तेमाल करके NonceLoader
,
और इसे
NonceRequest
. देखने के लिए
सैंपल ऐप्लिकेशन, जो नॉन्स जनरेट करने के लिए PAL का इस्तेमाल करता है. Cast के उदाहरण को यहां से डाउनलोड करें
GitHub.
स्ट्रीम के हर नए अनुरोध के लिए एक नई नॉन्स ज़रूरी है. इसमें कई विज्ञापन अनुरोध एक ही नॉन्स का इस्तेमाल कर सकते हैं. PAL SDK टूल की मदद से नॉन्स जनरेट करने के लिए, एक कस्टमाइज़ किया गया वेब रिसीवर बनाएं ऐप्लिकेशन और यह कोड जोड़ें:
receiver.html
<!DOCTYPE html>
<html>
<head>
<script src="//www.gstatic.com/cast/sdk/libs/caf_receiver/v3/cast_receiver_framework.js"></script>
<script src="//imasdk.googleapis.com/pal/sdkloader/cast_pal.js"></script>
</head>
<body>
<cast-media-player></cast-media-player>
<footer>
<script src="js/receiver.js" type="module"></script>
</footer>
</body>
</html>
<cast-media-player>
एलिमेंट, इसमें दिए गए पहले से मौजूद प्लेयर यूज़र इंटरफ़ेस (यूआई) दिखाता है
Cast Web रिसीवर API का इस्तेमाल करें. स्ट्रीम के टाइप के आधार पर, असल में इस्तेमाल किया गया प्लेयर
अलग-अलग हो सकते हैं. Google Cast में, आपको इन प्लेयर के सटीक वर्शन मिल सकते हैं
SDK टूल की प्रॉडक्ट की जानकारी.
इसके बाद, लोड करें
इवेंट
और रिसीवर के हर बार नया लोड करने पर नॉन्स जनरेट करेगा
MediaInformation
ऑब्जेक्ट:
js/receiver.js
const castContext = cast.framework.CastReceiverContext.getInstance();
const playerManager = castContext.getPlayerManager();
const consentSettings = new goog.cast.pal.ConsentSettings();
// For the correct usage of the allowStorage property, See
// developers.google.com/ad-manager/pal/cast/reference/js/ConsentSettings#allowStorage.
consentSettings.allowStorage = true;
// You need a nonce loader to request your stream's nonceManager. The
// nonceManager provides your nonce. You should reuse the same nonce loader for
// the entire lifecycle of the receiver.
const nonceLoader = new goog.cast.pal.NonceLoader(consentSettings);
// You need a reference to the NonceManager to track when an ad is shown or
// clicked.
let nonceManager;
/**
* Sends a debug message to the CAF sender.
*
* @param {String} message - The message to send
*/
const log = (message) => {
// Use CastDebugLogger to log a message to the sender. See
// https://developers.google.com/cast/docs/debugging/cast_debug_logger.
}
/**
* Stores the nonce manager in the outer scoped variable and retrieves a nonce,
* so it can be used to build your ad request URL
*
* @param {NonceManager} loadedNonceManager - The loaded nonce manager
*/
const buildAdRequest = (loadedNonceManager) => {
nonceManager = loadedNonceManager;
const nonce = nonceManager.getNonce();
log('received nonce:' + nonce);
// TODO: Set this nonce as the value for the `givn` parameter of your ad
// request URL. For example:
// const adRequestURL = 'https://myadserver.com/ads?givn=' + nonce;
}
/**
* Configures a new nonce request, then requests a nonce.
*
* @param {LoadRequestData} loadRequestData - the load request object,
* which contains the MediaInformation object from the sender. See
* developers.google.com/cast/docs/reference/web_receiver/cast.framework.messages.LoadRequestData
* @return {(Promise<LoadRequestData>)} - A Promise to build an ad request.
*/
const handleLoadRequest = (loadRequestData) => {
// Clear any old nonceManager before loading new media.
nonceManager = null;
// See developers.google.com/ad-manager/pal/cast/reference/js/NonceRequest
// for details about each property. The NonceRequest parameters set here are
// example parameters. You should set your parameters based on your own app
// characteristics.
const nonceRequest = new goog.cast.pal.NonceRequest();
nonceRequest.adWillAutoPlay = true;
// A URL describing the video stream.
nonceRequest.descriptionUrl = 'https://example.com';
nonceRequest.iconsSupported = true;
nonceRequest.ppid = 'Sample PPID';
nonceRequest.sessionId = 'Sample SID';
nonceRequest.url = loadRequestData.media.contentUrl;
// The height of the player in physical pixels.
// For a fullscreen player on a 1080p screen, the video height would be 1080.
nonceRequest.videoHeight = window.devicePixelRatio * window.screen.height;
// The width of the player in physical pixels.
// For a fullscreen player on a 1080p screen, the video width would be 1920.
nonceRequest.videoWidth = window.devicePixelRatio * window.screen.width;
return nonceLoader.loadNonceManager(nonceRequest)
.then(buildAdRequest)
.catch((e) => {
log("Error: " + e.message);
});
};
// Set up the event handler for the LOAD event type.
playerManager.setMessageInterceptor(cast.framework.messages.MessageType.LOAD, handleLoadRequest);
castContext.start();
डायरेक्ट वीएएसटी कॉल (डीवीसी) करते समय, इस नॉन्स को
givn
पैरामीटर. नॉन्स को यूआरएल के लिए सुरक्षित माना जाता है; आपको उसे यूआरएल-एन्कोड करने की ज़रूरत नहीं है.
वीडियो इंटरैक्शन ट्रैक करें
नॉन्स जनरेट करने के अलावा, PAL SDK टूल को वीडियो इंटरैक्शन. कास्ट किए जाने वाले डिवाइस के साथ इंटरैक्शन ट्रैक करने के लिए, पाने वाले को कोड दें:
js/receiver.js
const castContext = cast.framework.CastReceiverContext.getInstance();
const playerManager = castContext.getPlayerManager();
const consentSettings = new goog.cast.pal.ConsentSettings();
// For the correct usage of the allowStorage property, See
// developers.google.com/ad-manager/pal/cast/reference/js/ConsentSettings#allowStorage.
consentSettings.allowStorage = true;
// You need a nonce loader to request your stream's nonceManager. The
// nonceManager provides your nonce. You should reuse the same nonce loader for
// the entire lifecycle of the receiver.
const nonceLoader = new goog.cast.pal.NonceLoader(consentSettings);
// You need a reference to the NonceManager for sending ad events.
let nonceManager;
// Track playback status.
let playbackDidStart = false;
...
// Register the start of playback.
playerManager.addEventListener(cast.framework.events.EventType.PLAYING, () => {
if (playbackDidStart) return;
playbackDidStart = true;
if (nonceManager) {
log('Registered playback start');
nonceManager.sendPlaybackStart();
} else {
log("Error: There is no nonce manager for this media.");
}
});
// Register any interactions with the player.
const interactionEvents = [
cast.framework.events.EventType.REQUEST_SEEK,
cast.framework.events.EventType.REQUEST_STOP,
cast.framework.events.EventType.REQUEST_PAUSE,
cast.framework.events.EventType.REQUEST_PLAY,
cast.framework.events.EventType.REQUEST_SKIP_AD,
cast.framework.events.EventType.REQUEST_PLAY_AGAIN,
cast.framework.events.EventType.REQUEST_PLAYBACK_RATE_CHANGE,
cast.framework.events.EventType.REQUEST_VOLUME_CHANGE,
cast.framework.events.EventType.REQUEST_USER_ACTION,
cast.framework.events.EventType.REQUEST_FOCUS_STATE,
];
playerManager.addEventListener(interactionEvents, (interactionEvent) => {
if (nonceManager) {
log('Registered interaction: ' + interactionEvent);
nonceManager.sendAdTouch(interactionEvent);
} else {
log("Error: There is no nonce manager for this media.");
}
});
// Register the end of playback.
playerManager.addEventListener(cast.framework.events.EventType.MEDIA_FINISHED, () => {
playbackDidStart = false;
if (nonceManager) {
log('Registered playback end');
nonceManager.sendPlaybackEnd();
} else {
log("Error: There is no nonce manager for this media.");
}
});
castContext.start();
(ज़रूरी नहीं) तीसरे पक्ष के विज्ञापन सर्वर के ज़रिए Google Ad Manager सिग्नल भेजें
Ad Manager के लिए, तीसरे पक्ष के विज्ञापन सर्वर के अनुरोध को कॉन्फ़िगर करें. आपके बाद इन चरणों को पूरा करने के बाद, नॉन्स पैरामीटर PAL SDK टूल से अपने-आप रजिस्टर होता है. फिर उसे Google Ad Manager तक पहुंचाता है. यह चालू करता है के ज़रिए बेहतर तरीके से कमाई कर सकते है.
अपने तीसरे पक्ष के विज्ञापन सर्वर को कॉन्फ़िगर करें, ताकि सर्वर की Ad Manager से अनुरोध किया है. यहां ऐसे विज्ञापन टैग का उदाहरण दिया गया है जिसे तीसरे पक्ष का विज्ञापन सर्वर:
'https://pubads.serverside.net/gampad/ads?givn=%%custom_key_for_google_nonce%%&...'
ज़्यादा जानकारी के लिए, Google Ad Manager का सर्वर-साइड लागू करना देखें गाइड देखें.
नॉन्स वैल्यू की पहचान करने के लिए, Ad Manager givn=
देखता है. तीसरे पक्ष का विज्ञापन
सर्वर को अपने खुद के कुछ मैक्रो का समर्थन करना होगा, जैसे
%%custom_key_for_google_nonce%%
पर जाकर, उसे नॉन्स क्वेरी पैरामीटर से बदलें
आपने पिछले चरण में इसकी जानकारी दी थी. ऐसा करने के तरीके के बारे में ज़्यादा जानकारी
तृतीय-पक्ष विज्ञापन सर्वर के दस्तावेज़ों में उपलब्ध होनी चाहिए.