Expand my Community achievements bar.

Join us for an upcoming in-person Adobe Target Skill Builders event ~~> We're hosting these live learning opportunities to equip you with the knowledge and skills to leverage Target successfully. Learn more to see if we'll be coming to a city near you!

Adobe Target and Local Storage

Avatar

Administrator

8/18/22

Author: Brian Hawkins

Spoiler
If you don’t want to know how to access the Wordle solution without playing, please do not watch the video below.

Local Storage

Most websites widely use local Storage to store and access data. This data doesn’t expire like cookies and can hold considerably more data than cookies. Because of this, it is no surprise that there can be rich data to arm a testing and personalization engine like Adobe Target.

This video shows how easy it is to get data from Local Storage and make it available to Adobe Target for first impression targeting.

Amelia_Waliany_0-1660861537191.gif

 

Adobe Target targetPageParams documentation: https://experienceleague.adobe.com/docs/target/using/implement-target/client-side/at-js-implementati...

Code used to grab the Wordle solution from Local Storage to Adobe Target:

function targetPageParams() { 

		var str = window.localStorage.getItem("gameState");
		var parsed = JSON.parse(str);
		var solution = parsed.solution;

		return ("solution=" + solution); 

}

 Originally published: Jan 30, 2022

1 Comment

Avatar

Community Advisor

8/19/22

Thank you for posting this article, @Amelia_Waliany