Set up Adobe Target with Platform Web SDK
Learn how to implement Adobe Target using Adobe Experience Platform Web SDK. Learn how to deliver experiences and how to pass additional parameters to Target.
Adobe Target is the Adobe Experience Cloud application that provides everything you need to tailor and personalize your customers’ experience, so you can maximize revenue on your web and mobile sites, apps, and other digital channels.
Learning objectives
At the end of this lesson, you are able to do the following with a Web SDK implementation of Target:
- Add the pre-hiding snippet to prevent flicker
- Configure a datastream to enable Target functionality
- Render visual experience composer activities
- Render form composer activities
- Pass XDM data to Target and understand the mapping to Target parameters
- Pass custom data to Target such as profile and entity parameters
- Validate a Target implementation
- Separate personalization requests from analytics requests
Prerequisites
To complete the lessons in this section, you must first:
-
Complete all lessons for initial configuration of the Platform Web SDK, including setting up data elements and rules.
-
Ensure you have an Editor or Approver role in Adobe Target.
-
Install the Visual Experience Composer helper extension if you are using the Google Chrome browser.
-
Know how to set up activities in Target. If you need a refresher, the following tutorials and guides are helpful for this lesson:
Add flicker handling
Before starting, determine if an extra flicker handling solution is required depending on how the tag library is loaded.
Asynchronous implementation
When a tag library loads asynchronously, the page may finish rendering before Target has replaced default content with personalized content. This behavior can lead to what is known as “flicker,” where default content briefly displays before being replaced by the personalized content. If you want to avoid this flicker, Adobe recommends adding a special pre-hiding snippet immediately before the asynchronous tag embed code.
This snippet is already present on the Luma site, but let’s take a closer look to understand what this code does:
<script>
!function(e,a,n,t){var i=e.head;if(i){
if (a) return;
var o=e.createElement("style");
o.id="alloy-prehiding",o.innerText=n,i.appendChild(o),setTimeout(function(){o.parentNode&&o.parentNode.removeChild(o)},t)}}
(document, document.location.href.indexOf("adobe_authoring_enabled") !== -1, ".personalization-container { opacity: 0 !important }", 3000);
</script>
The pre-hiding snippet creates a style tag in the head of the page with the CSS definition of your choosing. This style tag is removed when a response from Target is received, or the timeout is reached.
The pre-hiding behavior is controlled by two configurations at the very end of the snippet.
body { opacity: 0 !important }
specifies the CSS definition to use for the pre-hiding until Target loads. By default, the whole page is hidden. You can update this definition to the selectors you want to pre-hide along with how you want to hide them. You may include multiple definitions since this value is simply what is inserted into the pre-hiding style tag. If you have an easily identifiable container element wrapping the content below your navigation, you could use this setting to limit the pre-hiding to that container element.3000
specifies the timeout in milliseconds for the pre-hiding. If a response from Target is not received before the timeout, the pre-hiding style tag is removed. Reaching this timeout should be rare.
alloy-prehiding
. If the pre-hiding snippet for at.js is used, it may not work properly.The pre-hiding snippet is also available within tags:
-
Go to the Extensions section of tags
-
Select Configure for the Adobe Experience Platform Web SDK extension
-
Select the Copy pre-hiding snippet to clipboard button
note note NOTE The default pre-hiding snippet copied from the Platform Web SDK extension may include a CSS definition that does not exist on your site, such as .personalization-container { opacity: 0 !important }
. Be sure to check and modify the pre-hiding snippet appropriately for your site.
Synchronous implementation
Adobe recommends implementing tags asynchronously as demonstrated on the Luma site. However, if the tag library is loaded synchronously, then the pre-hiding snippet is not required. Instead, the pre-hiding style is specified in the Platform Web SDK extension settings.
The pre-hiding style for synchronous implementations can be configured as follows:
-
Go to the Extensions section of tags
-
Select the Configure button for the Platform Web SDK extension
-
Select the Edit pre-hiding style button
-
Modify the CSS to include the selectors and hiding methods you would like to use, for example:
body { opacity: 0 !important }
if you would like to pre-hide the entire body of the page. -
Save your changes and build to a library
To learn more about how the Platform Web SDK can manage flicker, you can refer to the guide section: managing flicker for personalized experiences.
Configure the datastream
Target must be enabled in the datastream configuration before any Target activities can be delivered by Platform Web SDK.
To configure Target in the datastream:
-
Go to the Data Collection interface
-
On the left navigation, select Datastreams
-
Select the previously created
Luma Web SDK: Development Environment
datastream -
Select Add Service
-
Select Adobe Target as the Service
-
Enter the optional details about your Target implementation, if desired, following the guidance below.
-
Select Save
Property token
Target Premium customers have the option to manage user permissions with properties. Target properties allow you to establish boundaries around where users can run Target activities. Refer to the Enterprise Permissions section of the Target documentation for details.
To setup or find property tokens, navigate to Adobe Target > Administration > Properties. The </>
icon displays the implementation code. The at_property
value is the property token that you would use in your datastream.
Only one property token can be specified per datastream, but property token overrides allow you to specify alternative property tokens to replace the primary property token defined in the datastream. An update to the sendEvent
action is also needed to override the datastream.
Target environment ID
Environments in Target help you manage your implementation through all stages of development. This optional setting specifies which Target environment you are going to use with each datastream.
Adobe recommends setting the Target Environment ID differently for each of your development, staging, and production datastreams to keep things simple. Alternatively, you can organize your environments in the Target interface using the hosts feature.
To setup or find Environment IDs, navigate to Adobe Target > Administration > Environments.
Target third-party ID namespace
This optional setting allows you to specify which identity symbol to use for the Target Third Party ID. Target only supports profile syncing on a single identity symbol or namespace. For more information, you can refer to the Real-Time profile syncing for mbox3rdPartyId section of the Target guide.
The Identity Symbols are found in the identities list under Data Collection > Customer > Identities.
For the purposes of this tutorial using the Luma site, use the Identity Symbol lumaCrmId
set up during the lesson about Identities.
Render visual personalization decisions
Visual personalization decisions refer to the experiences created in Adobe Target’s visual experience composer. First, you should understand the terminology used in the Target and tags interfaces:
- Activity: A set of experiences targeted to one or more audiences. For example, a simple A/B test could be an activity with two experiences.
- Experience: A set of actions targeted to one or more locations, or decision scopes.
- Decision scope: A location where a Target experience is delivered. Decision scopes are equivalent to “mboxes” if you are familiar with using older versions of Target.
- Personalization decision: An action the server determines should be applied. These decisions may be based on audience criteria and Target activity prioritization.
- Proposition: The result of decisions made by the server, which are delivered in the Platform Web SDK response. For example, swapping a banner image would be a proposition.
Update the Send event action
Visual personalization decisions from Target are delivered by the Platform Web SDK, if Target is enabled in the datastream. However, they are not rendered automatically. You must update the Send event action to enable automatic rendering.
-
In the Data Collection interface, open the tag property you are using for this tutorial
-
Open the
all pages - library loaded - send event - 50
rule -
Select the
Adobe Experience Platform Web SDK - Send event
action -
Enable Render visual personalization decisions with the checkbox
-
Save your changes then build to your library
The render visual personalization decisions setting makes the Platform Web SDK automatically apply any modifications that were specified using the Target Visual Experience Composer or “global mbox”.
If you prefer to render or action on these decisions yourself using custom code, you can leave the Render visual personalization decisions setting disabled. Platform Web SDK is flexible and provides this capability to give you complete control. You can refer to the guide for more information about manually rendering personalized content.
Set up a Target activity with the Visual Experience Composer
Now that the basic implementation portion is complete, create an Experience Targeting (XT) activity in Target to validate that everything is working correctly. You may refer to the Target tutorial for creating Experience Targeting activities if you need assistance.
-
Navigate to the Adobe Target interface
-
Create an Experience Targeting (XT) activity using the Luma homepage for the activity URL
-
Modify the page, for example, change the text on the homepage hero banner. When finished, select Save then Next.
-
Update the event name, then select Next.
-
Choose Adobe Analytics as the reporting source with the appropriate report suite and the Orders metric as the goal
note note NOTE If you do not use Adobe Analytics then select Target as the reporting source and choose a different metric like Engagement > Page Views instead. A goal metric is required to save and preview the activity. -
Save the activity
-
If you are comfortable with your changes, then you can activate your activity. Otherwise, if you would like to preview the experience without activating you can copy the QA Preview URL.
-
Load the Luma homepage and you should see your changes applied
-
After a few hours, you should be able to see Target activity data and conversions in Adobe Analytics. Refer to the Target Guide for detailed information about Analytics for Target (A4T) reporting.
Validate with the Debugger
If you set up an activity, you should see your content rendered on the page. However, even if no activities are live, you can also look at the Send Event network call to confirm that Target is configured properly.
-
Open the Adobe Experience Platform Debugger browser extension
-
Go to the Luma demo site and use the debugger to switch the tag property on the site to your own development property
-
Reload the page
-
Select the Network tool in the debugger
-
Filter by Experience Platform Web SDK
-
Select the value in events row for the first call
-
Notice that there are keys under
query
>personalization
anddecisionScopes
has a value of__view__
. This scope is the equivalent to thetarget-global-mbox
. This Platform Web SDK call requested decisions from Target. -
Close the overlay and select the event details for the second network call. This call is only present if Target returned an activity.
-
Notice that there are details about the activity and experience returned from Target. This Platform Web SDK call sends a notification that a Target activity was rendered to the user and increments an impression.
Set up and render a custom decision scope
Custom decision scopes (formerly known as “mboxes”) can be used to deliver HTML or JSON content in a structured fashion using the Target Form-based Experience Composer. Content delivered to one of these custom scopes is not rendered automatically by the Platform Web SDK. It can be rendered using an action in Tags.
Add a scope to the Send event action
Modify your page load rule to add a custom decision scope:
-
Open the
all pages - library loaded - send event - 50
rule -
Select the
Adobe Experience Platform Web SDK - Send Event
action -
Add one or more scopes you would like to use. For this example, use
homepage-hero
. -
Save your changes and build to your library
Process the response from Target
Now that you have configured the Platform Web SDK to request content for the homepage-hero
scope, you must do something with the response. The Platform Web SDK tag extension provides a Send Event Complete event, which can be used to immediately trigger a new rule when a response from a Send Event action is received.
-
Create a rule called
homepage - send event complete - render homepage-hero
. -
Add an event to the rule. Use the Adobe Experience Platform Web SDK extension and the Send event complete event type.
-
Add a condition to restrict the rule to the Luma homepage (path without query string equals
/content/luma/us/en.html
). -
Add an action to the rule. Use the Adobe Experience Platform Web SDK extension and Apply propositions action type.
note tip TIP Give your rule events, conditions, and actions descriptive names instead of using the default names. Robust rule component names make the search results much more useful. -
Enter
%event.propositions%
into the Propositions field as we’re using the “Send event complete” event as the trigger for this rule. -
In the “proposition metadata” section select the Use a form
-
For the Scope field input
homepage-hero
-
For the Selector field input
div.heroimage
-
For Action Type select Set HTML
-
Select Keep Changes
In addition to rendering the activity, you must make an additional call to Target to indicate that the Form-based activity has rendered:
-
Add another action to the rule. Use the Core extension and the Custom code action type:
-
Paste the following JavaScript code:
code language-javascript var propositions = event.propositions; var heroProposition; if (propositions) { // Find the hero proposition, if it exists. for (var i = 0; i < propositions.length; i++) { var proposition = propositions[i]; if (proposition.scope === "homepage-hero") { heroProposition = proposition; break; }xw } } // Send a "display" event if (heroProposition !== undefined){ alloy("sendEvent", { xdm: { eventType: "display", _experience: { decisioning: { propositions: [{ id: heroProposition.id, scope: heroProposition.scope, scopeDetails: heroProposition.scopeDetails }] } } } }); }
-
Select Keep Changes
-
Save your changes and build to your library
-
Load the Luma homepage a few times, which should be enough to make the new
homepage-hero
decision scope register in the Target interface.
Set up a Target activity with the Form-based Experience Composer
Now that you have a rule to manually render a custom decision scope, you can create another Experience Targeting (XT) activity in Target. This time use the Form-Based Experience Composer.
-
Open Adobe Target
-
Deactivate the activity used for the previous lesson
-
Create an Experience Targeting (XT) activity using the Form-based Experience Composer option
-
Select the
homepage-hero
location from the location dropdown and Create HTML Offer from the content dropdown. If the location is not available, you can type it in. Target periodically populates new location names after receiving requests for that location or scope. -
Paste the following code in the content box. This code is a basic hero banner with a different background image:
code language-html <div class="we-HeroImage jumbotron" style="background-image: url('/content/luma/us/en/women/_jcr_content/root/hero_image.coreimg.jpeg');"> <div class="container cq-dd-image"> <div class="we-HeroImage-wrapper"> <p class="h3">New Luma Yoga Collection</p> <strong class="we-HeroImage-title h1">Be active with style </strong> <p> <a class="btn btn-primary btn-action" href="/content/luma/us/en/products.html" role="button">Shop Now</a> </p> </div> </div> </div>
-
On the Goals & Settings step, choose Adobe Target as the reporting source and Engagement > Page Views as the goal
-
Save the activity
-
If you are comfortable with your changes, then you can activate your activity. Otherwise, if you would like to preview the experience without activating you can copy the QA Preview URL.
-
Load the Luma homepage and you should see your changes applied
eventType
with the applicable _experience
details using the sendEvent
action.Validate with the Debugger
If you activated your activity, you should see your content render on the page. However even if no activities are live, you can also look at the Send Event network call to confirm that Target is requesting content for your custom scopes.
-
Open the Adobe Experience Platform debugger browser extension
-
Go to the Luma demo site and use the debugger to switch the tag property on the site to your own development property
-
Reload the page
-
Select the Network tool in the Debugger
-
Filter by Adobe Experience Platform Web SDK
-
Select the value in events row for the first call
-
Notice that there are keys under
query
>personalization
anddecisionScopes
has a value of__view__
like before, but now there is also ahomepage-hero
scope included. This Platform Web SDK call requested decisions from Target for changes made using the VEC and the specifichomepage-hero
location. -
Close the overlay and select the event details for the second network call. This call is only present if Target returned an activity.
-
Notice that there are details about the activity and experience returned from Target. This Platform Web SDK call sends a notification that a Target activity was rendered to the user and increments an impression. It was initiated by the custom code action action you added previously.
Send parameters to Target
In this section, you will pass Target-specific data and take a closer look at how XDM data is mapped to Target parameters.
Page (mbox) parameters and XDM
All XDM fields are automatically passed to Target as page parameters or mbox parameters.
Some of these XDM fields will map to special objects in Target’s backend. For example, web.webPageDetails.URL
will automatically be available to build URL-based targeting conditions or as the page.url
object when creating profile scripts.
You can also add page parameters using the data object.
Special parameters and the data object
There are some data points that may be useful to Target that are not mapped from the XDM object. These special Target parameters include:
These parameters must be sent in the data
object instead of in the xdm
object. Additionally, page (or mbox) parameters can also be included in the data
object.
To populate the data object, create the following data element, reusing data elements created in the Create data elements lesson:
-
data.content
using the following custom code:code language-javascript var data = { __adobe: { target: { "entity.id": _satellite.getVar("product.productInfo.sku"), "entity.name": _satellite.getVar("product.productInfo.title"), "profile.loggedIn": _satellite.getVar("user.profile.attributes.loggedIn"), "user.categoryId": _satellite.getVar("product.category") } } } return data;
Update the page load rule
Passing additional data for Target outside of the XDM object requires updating any applicable rules. For this example, the only modification you must make is to include the new data.content data element to the generic page load rule and product page view rule.
-
Open the
all pages - library loaded - send event - 50
rule -
Select the
Adobe Experience Platform Web SDK - Send event
action -
Add the
data.content
data element to the Data field -
Save your changes and build to your library
data
object that is not completely populated on all page types. Tags handles this situation appropriately and omits keys that have an undefined value. For example, entity.id
and entity.name
would not be passed on any pages aside from product details.Splitting Personalization and Analytics requests
The data layer on the Luma site is completely defined before the tags embed code. This allows us to use a single call to both fetch personalized content (e.g. from Adobe Target) and send analytics data (e.g. to Adobe Analytics).
On many websites, however, the data layer cannot be loaded early enough or quickly enough to use a single call for both applications. In those situations, you can use two Send event actions on a single page load and use the first for personalization and the second for analytics. Breaking up the events this way allows the personalization event to fire as early as possible, while waiting for the data layer to load completely before sending the Analytics event. This is similar to many pre-Web SDK implementations, where Adobe Target would fire the target-global-mbox
at the top of the page and Adobe Analytics would fire the s.t()
call at the bottom of the page
To create the personalization-on-top request:
-
Open the
all pages - library loaded - send event - 50
rule -
Open the Send event action
-
Select Use guided events and then select Request personalization
-
This locks the Type as Decisioning Proposition Fetch
To create the analytics-on-bottom request:
- Create a new rule called
all pages - page bottom - send event - 50
- Add an event to the rule. Use the Core extension and the Page Bottom event type
- Add an action to the rule. Use the Adobe Experience Platform Web SDK extension and Send event action type
- Select Use guided events and then select Collect analytics
- This locks the Include pending display notifications checkbox selected so the queued display notification from the decisioning request will be sent.
Validate with the Debugger
Now that the rules are updated, you can validate if the data is being passed correctly using the Adobe Debugger.
-
Navigate to the Luma demo site and login with the email
test@adobe.com
and passwordtest
-
Navigate to a product details page
-
Open the Adobe Experience Platform debugger browser extension and switch the tag property to your own development property
-
Reload the page
-
Select the Network tool in the Debugger and filter by Adobe Experience Platform Web SDK
-
Select the value in events row for the first call
-
Notice that there are keys under
data
>__adobe
>target
and they are populated with information about the product, category, and login state.
Validate in the Target interface
Next, look in the Target interface to confirm that data was received and is available to use in audiences and activities. XDM data is automatically mapped to custom Target parameters. You can validate that XDM data was received by Target and is available by creating an audience.
-
Open Adobe Target
-
Navigate to the Audiences section
-
Create an audience and choose the Custom attribute type
-
Search the Parameter field for
web
. The dropdown menu should populate with all the XDM fields related to the web page details.
Next, validate that the login state profile attribute was successfully passed.
-
Choose the Visitor Profile attribute type
-
Search for
loggedIn
. If the attribute is available in the dropdown menu then the attribute was passed correctly to Target. New attributes may take several minutes to become available in the Target UI.
If you have Target Premium, you can also validate that the entity data was passed correctly and the product data was written to the Recommendations product catalog.
-
Navigate to the Recommendations section
-
Select Catalog Search in the left side navigation
-
Search for the product SKU or product name you visited earlier on the Luma site. The product should show up in the product catalog. New products may take several minutes to become searchable in the Recommendations product catalog.
Validate with Assurance
Additionally, you can use Assurance where appropriate to confirm Target decisioning requests are getting the correct data and that any server side transformations are occuring correctly. You can also confirm campaign and experience information is contained in the Adobe Analytics calls even when the Target decisioning and Adobe Analytics calls are sent seperately.
-
Open Assurance
-
Start a new assurance sesison, input the session name and input the base url for your site or any other page you’re testing
-
Click Next
-
Select your connection method, in this case we’ll use copy link
-
Copy the link an paste it into a new browser tab
-
Click Done
-
Once your Assurance session launches you’ll see events populating in the events tab
-
Filter by “tnta”
-
Select the most recent call and expand the messages to make sure it’s populating correclty and note the “tnta” values
-
Next keep the “tnta” filter and select the analytics.mapping event thats occurs after the target event we just viewed.
-
Examine the “context.mappedQueryParams.<yourSchemaName>” value to confirm it containts a “tnta” attribute with a concatenated string that matches the “tnta” values found in the preceding target event.
This confirms that the A4T information that was queued for later transmission when we made the target decisioning call was sent properly when the analytics tracking call fired later on the page.
Now that you have completed this lesson you should have a working implementation of Adobe Target using the Platform Web SDK.
Next: Set up Journey Optimizer web channel