首页
学习
活动
专区
圈层
工具
发布
社区首页 >问答首页 >Adobe Audience Manager -跨设备缝合访问者

Adobe Audience Manager -跨设备缝合访问者
EN

Stack Overflow用户
提问于 2018-03-30 16:43:52
回答 2查看 586关注 0票数 0

我和我的团队是Adobe Audience Manager的新手,我们正在试图找出一旦用户进行身份验证(例如:登录),就可以在(同一访问者的)设备上缝合访问者cookie的方法。我也设置了Adobe Analytics,并进行了集成,以便将数据从Adobe Analytics发送到Adobe Audience Manager。

首先,我们试图建立一个统一的游客之旅,你会知道,一旦我们有了它,就会有无尽的好处。

任何指针/信息或相关文档都会有很大帮助。只是确保我们正朝着正确的方向前进。

向您致敬,阿德瓦

EN

回答 2

Stack Overflow用户

发布于 2018-05-18 05:51:06

您可以通过配置ID同步和配置文件合并规则将用户设备缝合在一起(在身份验证之后)。以下是您可以遵循的步骤

  1. 配置跨设备数据源(用于合并联机和脱机数据)

代码语言:javascript
复制
- 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

  1. 配置联机ID同步数据源

代码语言:javascript
复制
- 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

  1. 配置文件合并规则设置

代码语言:javascript
复制
- 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`

  1. 在您的网站上构建ID同步代码

假设您使用的是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

票数 0
EN

Stack Overflow用户

发布于 2018-04-17 05:09:09

您可以尝试根据登录详细信息设置Adobe Analytics s.visitorID。

https://marketing.adobe.com/resources/help/en_US/sc/implement/visid_custom.html

票数 -1
EN
页面原文内容由Stack Overflow提供。腾讯云小微IT领域专用引擎提供翻译支持
原文链接:

https://stackoverflow.com/questions/49571223

复制
相关文章

相似问题

领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档