Adobe Target 배달 API 시작

IMPORTANT
이 안내서는 Target 배달 API를 직접 호출하는 at.js 및 직접 서버측 구현에 적용됩니다. Adobe Experience Platform Web SDK을(를) 사용하여 Target을(를) 구현하는 경우 대신 Interact API(sendEvent 명령, Experience Platform Edge Network)를 사용하십시오. 자세한 내용은 Adobe Experience Platform Web SDK를 참조하십시오.

Target 배달 API 호출은 다음과 같습니다.

curl -X POST \
  'https://`clientCode`.tt.omtrdc.net/rest/v1/delivery?client=`clientCode`&sessionId=d359234570e04f14e1faeeba02d6ab9914e' \
  -H 'Content-Type: application/json' \
  -H 'cache-control: no-cache' \
  -d '{
      "context": {
        "channel": "web",
        "browser" : {
          "host" : "demo"
        },
        "address" : {
          "url" : "http://demo.dev.tt-demo.com/demo/store/index.html"
        },
        "screen" : {
          "width" : 1200,
          "height": 1400
        }
      },
        "execute": {
        "mboxes" : [
          {
            "name" : "homepage",
            "index" : 1
          }
        ]
      }
    }'

관리 > 구현​으로 이동하여 Target UI에서 clientCode을(를) 검색할 수 있습니다.

Target 배달 API를 호출하기 전에 다음 단계에 따라 응답에 관련 경험이 포함되어 있는지 확인하여 최종 사용자에게 표시할 수 있습니다.

  1. 양식 기반 작성기 또는 시각적 경험 작성기를 사용하여 Target 활동(A/B, XT, AP 또는 권장 사항)을 만듭니다.
  2. 배달 API를 사용하여 2단계에서 만든 Target 활동에 사용된 mbox에 대한 응답을 가져옵니다.
  3. 방문자에게 경험을 선물합니다.
recommendation-more-help
target-dev-help-dev