從Adobe Campaign登陸頁面更新Adobe Experience Platform設定檔  ac-aep-lp

Adobe Campaign與Adobe Experience Platform的整合可讓您在Adobe Campaign登陸頁面與Adobe Experience Platform之間無縫同步設定檔資料。 透過這項整合,您可以:

  • 擷取Adobe Experience Platform設定檔屬性,以便在Adobe Campaign登陸頁面中顯示更新的資訊。
  • 將更新的設定檔屬性傳回至Adobe Experience Platform,以根據登入頁面中已填寫和提交的內容來更新對應的屬性。

設定這項整合的主要步驟如下:

設定Oauth連線 oauth

Adobe Cloud Platform API使用OAuth 2.0通訊協定進行驗證和授權。 若要使用API呼叫將Adobe Experience Platform連線至Adobe Campaign,您需要使用Adobe Developer Console中建立的OAuth整合來產生存取權杖。

要執行此操作,請依照下列步驟執行:

  1. 存取Adobe Developer Console。

  2. 使用Adobe Experience Platform API產品建立新的API連線。 Adobe Developer Console檔案提供了有關如何取得OAuth 2.0存取權杖的詳細步驟。

  3. 建立連線後,請導覽至​ OAuth Server-to-Server ​功能表並複製下列詳細資料(Campaign中需要這些詳細資料以進行驗證):

    • CLIENT ID
    • CLIENT SECRET
    • ORGANIZATION ID

    {width="70%"}

現在您的Oauth連線已設定完畢,請建立並設定新的​ HTTP API Source連線,將Adobe Campaign與Adobe Experience Platform連結。

建立HTTP API Source連線 source

OAuth連線就緒後,下一步就是在Adobe Experience Platform中建立​ HTTP API Source連線。 此連線可讓您使用API將資料串流到Adobe Experience Platform。 請依照下列步驟操作:

  1. 導覽至Adobe Experience Platform Sources,搜尋​ HTTP API ​來源,然後按一下​ Add data

    {width="70%"}

  2. 視需要設定連線。 有關如何設定HTTP API連線的詳細資訊,請參閱Adobe Experience Platform來原始檔

    在​ Authentication ​步驟中,開啟​ Enable authentication ​選項,以使用先前透過OAuth整合產生的存取權杖進行驗證。

    {width="70%"}

  3. 設定來源連線後,串流端點就會顯示。 需要此端點才能將資料內嵌至Adobe Experience Platform。

    {width="70%"}

    您也可以從​ Dataflows ​索引標籤開啟新建立的資料流,以存取擷取到Adobe Experience Platform的資料格式範例。

    {width="70%"}

HTTP API Source連線已設定完畢,您需要在Adobe Campaign中新增特定選項,才能啟用Adobe Experience Platform連線。

在Adobe Campaign中新增驗證選項 xtk

設定HTTP API Source連線後,您需要在Adobe Campaign中新增特定選項,以啟用與Adobe Experience Platform的連線。 您可以在Campaign管理功能表中或透過新增特定​ JavaScript code ​活動來執行登入頁面工作流程時完成此作業。

瀏覽下列索引標籤,以探索下列兩種方法:

從管理功能表新增選項
  1. 導覽至​ Administration > Platform > Options ​功能表。

  2. 使用Adobe Developer Console中的對應值新增以下選項:

    • IMS_CLIENT_ID = cryptString(使用者端ID)
    • IMS_CLIENT_SECRET = cryptString(使用者端密碼)
    • IMS_ORG_ID =組織識別碼
    • IMS_CLIENT_API_KEY = cryptString(使用者端ID)

    {width="70%"}

    note note
    NOTE
    cryptString()函式用於加密您的驗證資料。
使用JavaScript程式碼活動新增選項

若要在執行登入頁面工作流程時自動設定這些選項,請使用下列程式碼將​ JavaScript code ​活動新增至您的工作流程。 瞭解如何設定JavaScript程式碼活動

在執行工作流程時,系統會自動在Campaign主控台中使用提供的值建立選項。

code language-none
```javascript
loadLibrary("xtk:shared/nl.js");
loadLibrary("xtk:shared/xtk.js");
loadLibrary("xtk:shared/json2.js");
loadLibrary("xtk:common.js");

function setAuthCredentials()
{
setOption("IMS_CLIENT_ID", cryptString('CLIENT ID')));
setOption("IMS 「」, cryptString('CLIENT SECRET'));
setOption("IMS_ORG_ID", cryptString('ORGANIZATION ID'));
setOption("IMS_CLIENT_API_KEY", cryptString('CLIENT ID'));
}
```

現在Campaign中已設定驗證選項,您需要建立自訂JavaScript程式碼,以允許從您的登陸頁面在Campaign和Adobe Experience Platform之間同步資料。

在工作流程執行時新增選項 javacript

若要讓登入頁面與Adobe Experience Platform之間的資料同步,必須將自訂JavaScript程式碼新增至Adobe Campaign。 請依照下列步驟操作:

  1. 導覽至​ Administration > Configuration > JavaScript codes ​功能表。

  2. 建立新的JavaScript程式碼並複製貼上以下程式碼片段。

    note note
    NOTE
    存取權杖和驗證資料會從先前設定的選項中自動擷取。

    {width="70%"}

指令碼1 — 從Experience Platform載入設定檔屬性

此程式碼會在載入登陸頁面之前,先檢查設定檔是否存在Adobe Experience Platform中。 它會擷取設定檔屬性,並在登入頁面的對應欄位中顯示這些屬性。

code language-javascript
// API implementation to read profile from AEP
function getProfileInfo(email)
{
var accessToken = getAccessToken();
var request = new HttpClientRequest(('https://platform-stage.adobe.io/data/core/ups/access/entities?schema.name=_xdm.context.profile&entityId=' + email + '&entityIdNS=email&fields=identities,consents.marketing'));
request.method = 'GET';
request.header["Content-Type"] = "application/json";
request.header["sandbox-name"] = "prod";
request.header["x-gw-ims-org-id"] = getOption('IMS_ORG_ID');
request.header["x-api-key"] = getOption('IMS_CLIENT_API_KEY');
request.header["Authorization"] = "Bearer " + accessToken;
request.execute();
return request.response;
}
指令碼2 — 更新Experience Platform設定檔屬性

此程式碼會使用登陸頁面中提交的值更新Adobe Experience Platform中的設定檔屬性。

code language-javascript
// API implementation to update profile in AEP
loadLibrary("xtk:shared/nl.js");
loadLibrary("xtk:shared/xtk.js");
loadLibrary("xtk:shared/json2.js");
loadLibrary("xtk:common.js");

function updateProfileInAEP(profileUpdatePayload)
{
var accessToken = getAccessToken();
var request = new HttpClientRequest('https://dcs-stg.adobedc.net/collection/64a300b84d61c0bcea4f0cd4ecaaa224a19477026d14f7e08b5408ffaf5e6162?syncValidation=false');
request.method = 'POST';
request.header["Content-Type"] = "application/json";
request.header["sandbox-name"] = "prod";
request.header["Authorization"] = "Bearer " + accessToken;
var body = '{"header":{"schemaRef":{"id":"https://ns.adobe.com/campdev/schemas/35d8e567772e1a1093ed6cf9e41d2c1fec22eeb3a89583e1","contentType":"application/vnd.adobe.xed-full+json;version=1.0"},"imsOrgId":"A1F66F0D5C47D1950A494133@AdobeOrg","datasetId":"63c7fa2a20cce11b98cccb41","source":{"name":"testHTTPSourcesVinay - 03/06/2023 5:43 PM"}},"body":{"xdmMeta":{"schemaRef":{"id":"https://ns.adobe.com/campdev/schemas/35d8e567772e1a1093ed6cf9e41d2c1fec22eeb3a89583e1","contentType":"application/vnd.adobe.xed-full+json;version=1.0"}},"xdmEntity":' + profileUpdatePayload +'}}';
request.body = body;
request.execute();
return request.response;
}


// Get Access token from OAuth-Server-to-server API call
function getAccessToken() {
var clientId = decryptString(getOption('IMS_CLIENT_ID'));
var clientSecret = decryptString(getOption('IMS_CLIENT_SECRET'));
var request = new HttpClientRequest(('https://ims-na1-stg1.adobelogin.com/ims/token/v2?grant_type=client_credentials' + '&client_id=' + clientId + '&client_secret=' + clientSecret + '&scope=openid,session,AdobeID,read_organizations,additional_info.projectedProductContext'));
request.method = 'POST';
request.execute();
var response = request.response;
if(response.code != 200){
logError('GetAccessToken failed,', response.code, response.body);
return;
}
var body = ''+response.body;
var parsedResponse = JSON.parse(body);
var accessToken = parsedResponse.access_token;
logInfo("Access token generated successfully");
return accessToken;
}

現在,自訂JavaScript程式碼已建立到Adobe Campaign中,您可以設定包含登入頁面的工作流程,以使用這些JavaScript程式碼進行資料同步。

設定登入頁面工作流程 script

將JavaScript程式碼新增至Adobe Campaign後,您就可以使用​ JavaScript code ​活動將這些程式碼運用到您的登陸頁面工作流程中:

  • 若要在載入登入頁面之前從Experience Platform載入資料,請在登入頁面活動之前新增​ JavaScript code ​活動,並複製貼上指令碼1。
指令碼1 — 從Experience Platform載入設定檔屬性
code language-javascript
// Script code to read profile from AEP.

logInfo("Loading profile from AEP");
loadLibrary("cus:aepAPI");
var recipient=ctx.recipient;
var email = recipient.@email;
var response = getProfileInfo(email);
ctx.isAEPProfileExists = 1;

if(response.code == 404){
ctx.isAEPProfileExists = 0
logInfo("Profile with email" + email + " not found in AEP, ignoring the update activity");
}
else if(response.code == 200){
var body = ''+response.body;
var parsedResponse = JSON.parse(body);
for (var key in parsedResponse) {
    var value =  parsedResponse[key];
    var marketing = value.entity.consents.marketing;
    logInfo("User Consent Details : " + JSON.stringify(marketing));
    if(marketing.hasOwnProperty('email')&&marketing.email.hasOwnProperty('val')&&marketing.email.val=='n'){
    ctx.recipient.@blackListEmail = 1;
    }
    if(marketing.hasOwnProperty('sms')&&marketing.sms.hasOwnProperty('val')&&marketing.sms.val=='n'){
    ctx.recipient.@blackListMobile = 1;
    }
    if(marketing.hasOwnProperty('push')&&marketing.push.hasOwnProperty('val')&&marketing.push.val=='n'){
    ctx.recipient.@blackListPostalMail = 1;
    }
}
}
  • 若要使用在登入頁面中提交的資料更新Experience Platform設定檔屬性,請在登入頁面活動後新增​ JavaScript code ​活動,並複製貼上指令碼2。
指令碼2 — 更新Experience Platform設定檔屬性
code language-javascript
// Script code to update profile in AEP and ACC.

logInfo("Executing script to update AEP profile.");

// Loading aepAPI library JS code
loadLibrary("cus:aepAPI");

var recipient=ctx.recipient

// Update profile only if it exists in AEP
if(ctx.isAEPProfileExists==1){

var email = recipient.@email
logInfo(email);
logInfo(recipient.@blackListEmail);
logInfo(recipient.@blackListMobile);
logInfo(recipient.@blackListPostalMail);

var optOutPayload = new Array();

if(recipient.@blackListEmail==1){
    optOutPayload.push('"email":{"val":"n"}');
}
else
    optOutPayload.push('"email":{"val":"y"}');

if(recipient.@blackListMobile==1){
    optOutPayload.push('"sms":{"val":"n"}');
}
else
    optOutPayload.push('"sms":{"val":"y"}');

if(recipient.@blackListPostalMail==1){
    optOutPayload.push('"push":{"val":"n"}');
}
else
    optOutPayload.push('"push":{"val":"y"}');

var profileUpdatePayload = '{'+ '"personalEmail":{"address":' + '\"' + email + '\"' + '},' +'"consents":{"marketing":{' + optOutPayload.toString() + '}}}';

var response = updateProfileInAEP(profileUpdatePayload);
if(response.code == 200){
var body = '' + response.body;
logInfo("AEP Profile Updated successfully, Response " + body);
// Update ACC profile
recipient.@xtkschema = "nms:recipient";
recipient.@_operation = "update";
recipient.@_key="@id";
xtk.session.Write(recipient);
logInfo("ACC Profile Updated successfully");
}
else{
    logError('Server Error: ', response.code, response.body);
}
}
else {
logInfo("Ignoring AEP profile update as profile doesn't exists.");

// Update ACC profile
recipient.@xtkschema = "nms:recipient";
recipient.@_operation = "update";
recipient.@_key="@id";
xtk.session.Write(recipient);
logInfo("ACC Profile Updated successfully");
}
CAUTION
請確定您根據特定需求,自訂每個指令碼中的裝載。
如果您在登入頁面活動之前未新增任何指令碼,則不會在Adobe Experience Platform中執行任何設定檔存在性檢查。 提交登入頁面且設定檔不存在時,將會使用登入頁面的屬性在Adobe Experience Platform中建立。

以下是登陸頁面前後使用JavaScript程式碼活動的範例工作流程:

以下是登入頁面和JavaScript程式碼活動的範例,其設定是用來更新Adobe Experience Platform中的設定檔屬性:

更多資訊

recommendation-more-help
35662671-8e3d-4f04-a092-029a056c566b