Issue/Symptoms
Unable to create a Target Audience based on cookie value.
Environment
Adobe Target without Adobe Launch
Steps to resolve
There is no option in Adobe Target to create audience based on cookie value, but this can be done with help of Adobe Launch.
Go to Adobe Target.
Using Javascript, you can use a code snippet like the example below:
targetPageParams = function() {
var cookieValue = document.cookie.replace(/(?:(?:|.*;\s*)COOKIENAME\s*\=\s*(;*).*$)|.*$/, "$1");
return "PARAMNAME="+cookieValue;
};
/* replace `COOKIENAME` and `PARAMNAME` */