Expand my Community achievements bar.

SOLVED

Enabling Adobe Target via Data Collection

Avatar

Level 1

Hello,

 

I am enabling Adobe Target via Adobe Launch/Data Collection following these steps.

 

https://experienceleague.adobe.com/docs/platform-learn/implement-in-websites/implement-solutions/tar...

 

  1. We put the latest production version of the launch script in our site https://publish-p58709-e802860.adobeaemcloud.com/
  2. We enabled Adobe Target extension via  Adobe data collection platform as given above
  3. We also added the rule to load Target then fire Page Load Request as given in the document above (Attaching the rule screenshot)
  4. We also created a simple AB test in Target for the above site
  5. Now when we go to our site https://publish-p58709-e802860.adobeaemcloud.com/ , We see the -launch script being called but we do not see the -delivery script that is being called due to which the AB Test is not being executed.  Are we missing any step here to get the mbox delivery script called by the site?

https://experience.adobe.com/#/@moonraftapacptrsd/sname:prod/data-collection/tags/companies/CO20e292...

Topics

Topics help categorize Community content and increase your ability to discover relevant content.

1 Accepted Solution

Avatar

Correct answer by
Community Advisor

Hello @prabagarm640264 One config we have to do when using AEMaaCS domains (*.adobeaemcloud.com) without custom domains is to let Target framework to enable on public suffix domains.

 

Adding the below code after or before target load.

 

window.targetGlobalSettings =
{
var hostname=window.location.hostname;
cookieDomain:hostname;
}

 https://experienceleague.adobe.com/docs/target-dev/developer/client-side/at-js-implementation/functi...

View solution in original post

2 Replies

Avatar

Employee Advisor

The _satellite object is showing as undefined, which means Adobe Tags (Launch) tag management isn't being loaded on the page. I also don't see any trace of a script that's loading Adobe Tags in your html

Avatar

Correct answer by
Community Advisor

Hello @prabagarm640264 One config we have to do when using AEMaaCS domains (*.adobeaemcloud.com) without custom domains is to let Target framework to enable on public suffix domains.

 

Adding the below code after or before target load.

 

window.targetGlobalSettings =
{
var hostname=window.location.hostname;
cookieDomain:hostname;
}

 https://experienceleague.adobe.com/docs/target-dev/developer/client-side/at-js-implementation/functi...