Skip to content

Version 8.0

Choose a tag to compare

@jfkhoury jfkhoury released this 20 Sep 19:59
· 10 commits to master since this release
  • Remove shared features with ID Service from library.

DIL now has a hard dependency on Visitor 3.3+. It relies on ID Service to fire ID syncs and URL destinations. It will throw an error if Visitor is missing/old/not configured. ID Service is configured with the following:

// Client side DIL
var dilInstance = DIL.create({
    ...,
    visitorService:{
      namespace: "INSERT-EXPERIENCE-CLOUD-ORGANIZATION-ID-HERE"
    }
  };
   
  // Server side forwarding
  aamModule.setup…({
    ...,
    visitorService:{
      namespace: "INSERT-EXPERIENCE-CLOUD-ORGANIZATION-ID-HERE"
    }
});