我和我的团队是Adobe Audience Manager的新手,我们正在试图找出一旦用户进行身份验证(例如:登录),就可以在(同一访问者的)设备上缝合访问者cookie的方法。我也设置了Adobe Analytics,并进行了集成,以便将数据从Adobe Analytics发送到Adobe Audience Manager。
首先,我们试图建立一个统一的游客之旅,你会知道,一旦我们有了它,就会有无尽的好处。
任何指针/信息或相关文档都会有很大帮助。只是确保我们正朝着正确的方向前进。
向您致敬,阿德瓦
发布于 2018-05-18 05:51:06
您可以通过配置ID同步和配置文件合并规则将用户设备缝合在一起(在身份验证之后)。以下是您可以遵循的步骤
- Go to `Audience Data > Data Sources > Add New`
- name the data source as `Cross Device ID Sync`
- Enter the following Integration code `offlinesyncid`, which is your own, unique ID for this data source.
- In the ID Type choose `Cross Device`
- In the ID Definition choose `Person`
- In the `Data Export Controls` tick the `No ristriction` checkbox and make sure all other checkboxes are unticked.
- In the `Data Source Settings` tick the `Inbound` checkbox and make sure the `Customer ID` radio button is chosen
- In the `Data Source Settings` tick the `Outbound` checkbox
- Make sure the `Use as Authenticated Profile` checkbox is ticked
- Tick the `Share associated visitor or device IDs across the Audience Manager platform` checkbox
- Save the datasource
- Note the ID of the datasource you just created as we will use it in the following steps. Let's assume it is 123456
- Go to `Audience Data > Data Sources > Add New`
- name the data source as `Online ID Sync`
- Enter the following Integration code `sitesyncid`
- In the ID Type choose `Cookie`
- In the `Data Export Controls` tick the `No ristriction` checkbox and make sure all other checkboxes are unticked.
- In the `Data Source Settings` tick the `Inbound` checkbox and make sure the `Customer ID` radio button is chosen
- In the `Data Source Settings` tick the `Outbound`, `Share Enabled`, and `Share associated visitor or device IDs across the Audience Manager platform` checkboxes.
- Save the datasource
- Go to `Audience Data > Profile Merge Rules > Add New Rule`
- Name the new rule as `Last Authenticated with Profile Link Device Graph`
- in the `Profile Merge Rule Setup` section choose the `Last Authenticated Profiles` radio button and tick the `Cross Device ID Sync - Person` datasource
- From the `Device Options` section, choose the `Profile Link Device Graph`
假设您使用的是dil.js代码,下面是一个如何执行ID同步的示例
var customerID =“<客户ID,例如56789142>";//如果(customerID) { var yoursiteDIL = DIL.create({ partner:"",// Adobe提供给您的合作伙伴名称),请将双引号之间的文本替换为您自己的认证客户ID。uuidCookie:{ name:"aam_uuid",days : 30 },visitorService:{ namespace:"XXXXXXXXXXXXXXXXXXXXX@AdobeOrg“//在这里插入adobe org id。},containerNSID:'0',//建议将其设置为零。但是,它可能会根据您运行的完全独立的站点的数量而变化。declaredId:{ dpid:"123456“,//这是您刚刚创建的跨设备数据源的ID : dpuuid : customerID } });var c= decodeURIComponent('%01');var cidObject ={ cid_ic:'sitesyncid‘+c+ customerID +c+ '1’//这是您为在线ID同步数据源设置的集成代码};yoursiteDIL.api.signals(cidObject,'d_');yoursiteDIL.api.signals({c_sitesyncid: customerID});} else { var yoursiteDIL = DIL.create({ partner:"",uuidCookie:{ name:"aam_uuid",days : 30 },visitorService:{ namespace:"XXXXXXXXXXXXXXXXXXXXX@AdobeOrg“//在此处插入adobe org id。} });} "signalValue"}); ({ "signalKey":yoursiteDIL.api.signals
发布于 2018-04-17 05:09:09
您可以尝试根据登录详细信息设置Adobe Analytics s.visitorID。
https://marketing.adobe.com/resources/help/en_US/sc/implement/visid_custom.html
https://stackoverflow.com/questions/49571223
复制相似问题