Use tag environments and embed codes

Learn how to use development, staging, and production environments and embed codes to develop and validate your tag property. For more information, see the environments documentation.

Transcript
In this video. We’ll explain how to use environments for a web property in tags and the types of environments that are available. While the function of environments is basically the same across all property types, there are some differences. Another implemented between web, mobile and event forwarding properties. And for this video we’ll just be focusing on web for web properties and environment is essentially a container which houses a working version of a library, allowing it to be hosted and executed on different URLs. Whenever you make a new property, three environments are automatically added development, staging and production. These three environments correspond to the typical environments used for websites in standard application lifecycle strategies. Each environment provides an automatically generated code snippet that you copy and paste onto the web pages that you want to install it on. Making it easy to implement different versions of your build on different stages of your site’s lifecycle. Let’s quickly go over how this looks in practice. In this example, flow, a developer works on the development environment to make changes to the taxable plantation, which can include alterations to rules, data elements, extensions and so on. When they’ve completed their work. They send those changes to the staging environment for Q, A and other teams to review. Once Q is done and changes have been approved, the code is then published to the production environment which is deployed on the public facing version of the website. The benefit of this is that you can safely add new features and make implementation changes available to the right users at the right time. There is also no limit to the number of development environments you can create, which is very useful if you have multiple developers working on different projects at the same time for the same website. Before we show you how to start interacting with environments, there are two important definitions that we need to understand libraries and embed codes. A library is a set of static files that represent your build code. In other words, a library is the collection of rules, data elements, extensions and other configurations that make up a tagging implementation. Each tag property can contain multiple libraries, and each library must be attached to a specific environment before it can be built for testing and deployment. And embed code is a code snippet that’s attached to a specific environment and is automatically generated when that environment is created. By placing this code on a web page, that page will have access to the library file that’s currently active on the corresponding environment. So now let’s see how we can manage environments within the tags interface. Once you’ve selected the property you want to work with click environments in the left navigation. Here we see the three environments that were automatically created for us when we first made this property. While having one development environment can work fine in a typical tag’s implementation, there may be several developers or teams working on separate tasks at the same time. In these cases, it’s useful for each team or individual developer to have their own development environment. This allows them to work independently without worrying about conflicting with code changes being made by other devs at the same time. Development environments are intended to help your teams iterate through changes to your tag libraries in order to ensure that the business logic behaves as expected. So let’s walk through the process of creating a new development environment to see what that looks like. Click Add environment on the top right. And here we can see that we can only create new development environments. This is because while your organization can have many development environments, you can only have one staging environment and one production environment. So the QA process, since those environments have already been created, the options to create new ones have been grayed out. So we’ll select development. And from here we can give our environment a name. In this case, I’ll call this one Luma Dev Team Alpha. Since I want it to be clear which development team this environment is intended for, the next step is to pick a host. We highly recommend that you use managed by Adobe for Development Environment specifically since this allows you to check your code on the website immediately whenever you update a build with less maintenance overhead compared to the self hosting option. We also have the option to enable the archive setting for this environment. If enabled, this environment will output your build in a compressed archive format rather than a deployable set of files. We’ll leave that toggle at the default setting for now and just click save here on the upper right. Once our environment is created, it’s immediately assigned a unique, automatically generated embed code. You can see the HTML script tag here and that it contains a source attribute that references the path to a JavaScript file. This file is the library build that’s currently assigned to this environment, and when we place this script on the pages of our website, the rules that we set up in that library will execute on those pages. If you do business in China, Adobe offers a premium screen feature that allows you to use delivery networks physically located within China. In order to comply with local content distribution regulations. If your organization has purchased this feature, you’ll see two embed codes here, one being the standard code and the other being the code for the China City. And specifically, if your company doesn’t have this feature, I’d like to take advantage of it. Please get in touch with your Adobe Wrap for more information. Now going back to the standard embed code, notice at the end of the code that it includes the word development. This is a really good way to double check that you’re placing the correct embed code in the appropriate version of your website. If this was a staging environment, it would say stage at the end of the code and a production environment won’t have anything appended at all. So in practice, there’s generally two things that we need to decide when it comes to an environments embed code. What web pages it needs to be installed on and how the library should be loaded. When it comes to the where the embed code should be placed within the head section of your web pages. HTML Structure. If your website uses a template page as is common, you can choose to put the embed code in the header of the template instead. So the script is replicated on every page of the website. You can see I pasted the code for the development environment here and this would work fine if we’re just testing this out in the development sandbox. But in a real implementation, you probably see something more like this. Instead of just hard coding a single embed code for our template, we’re using some simple conditional logic to add the code dynamically. This will fetch the current web environment being used from a global variable and add the correct embed code for that environment to the header before the page loads. We also strongly recommend that you include a data layer on your site that contains all the attributes needed to populate variables and analytics, target experience, platform and other products. We’ve stripped down this example data layer here to something very simple just for demonstration purposes as a real data layer would typically have a lot more information. Note, though, that we’ve added it above the script that outputs the embed code, which is preferable. You can still choose to declare the data layer after the embed code as this can be useful for analytics implementations. But if you’re using a personalization application like Target, we recommend defining it above the embed code to maximize its effectiveness for those use cases. And while we’re talking about personalization for target implementations, you’ll also want a hard code, a pre hiding snippet before the embed code in order to manage content flicker. You can find examples of these snippets for different implementation methods within the target documentation, which includes this one for tags. However, this is only necessary when you are loading the library asynchronously, which serves as a nice segway into our next decision. Now that we know where we want our libraries loaded, we also need to choose how they’re loaded. More specifically for any embed code. We need to choose whether we want the library to load on our website synchronously or asynchronously. Using this toggle here on the upper left. You can see that when we switch between asynchronous and synchronous, the format of the embed code changes asynchronous embed codes will include the term async near the end of the code, and synchronous codes will include a footer tag in addition to the standard header tag. But with all that being said, let’s actually talk about what this setting does and why you would want to choose one option over the other depending on your implementation needs. The asynchronous setting is best used when the page rendering is independent of other tagging processes that are going on. This is usually more efficient because once one process starts, the next process doesn’t need to wait for the previous one to finish, and it can also immediately begin. In other words, the code executes in parallel because it is the faster, more performative option. In most cases, Adobe recommends using the async or this method unless you have specific needs that require the page load process and your tag execution to run synchronously. Specifically, you should only use the synchronous option when one request or process depends on information from another request before it can proceed. This is sometimes called a blocking script because the second process is blocked until the first one completes. The synchronous option is also good two years when you have several requests that all depend on the same processor. In this case, using the async option won’t speed anything up. It can actually result in more overhead work for the processor. So for this environment I’ll stick with the async option and close the embed window. If you ever want to pull up the embed code later, you can simply click on the package icon for the environment and question. If we’re ready to install this environment on our website, we can then click on the copy symbol to copy the script tied to our clipboard, where we can then go ahead and paste it into our web page header. Now, if we were a developer and we wanted to test or embed code without outright installing it on our site, we can actually use Adobe Experience Platform Debugger to simulate that behavior instead without needing to directly touch our code. When browsing your website, open up the extension and select experienced platform tags in the left navigation at the top. We’re given some basic info about the bill that’s currently active on the page, including its parent property, the environment. It’s tied to the different extensions it has installed and so on. Click into the configuration tab and here we can see the embed code. We’ll select actions. Then click replace and then we can paste or embed code here to replace the library that’s running locally on our browser, providing a noninvasive way to test our implementation against our website. Debugger detects the change in real time and we can see which environment and extensions are now active. So we can confirm we’ve added the right build. It’s also good practice to double check the updated version and build data to make sure you’re not using a cache version of the library. Once initial testing is done, environments play a key role in how libraries are reviewed, approved and published within the publishing flow tab. You can see which libraries are available on the system, where they are on the publishing process and their corresponding environments if applicable. As developers use their corresponding dev environments to test whether the tagging behavior is working as designed, they can move their libraries to the submitted column for review, where they’ll then be hosted on the staging environment. Those that are approved will move to the next column where they’re removed from any active environment before ultimately making the final step to the publish column and the production environment by extension. Remember, this entire process only works once you’ve installed the embed codes for your various tag environments to their corresponding environments within your actual website. From dev through staging to production. So those were the basics of working with environments for web properties and tags which connect your web pages to your hosted tag libraries and allow your development teams to confidently test and iterate on different builds using the same application lifecycle management stages as the website itself. Thanks for watching.
recommendation-more-help
9cc2b5f3-7a2d-451f-950c-f8f7136b6390