사용자 권한(Premium)
마지막 업데이트: 2025년 5월 5일
- 주제:
- APIs/SDKs
작성 대상:
- 개발자
Adobe을(를) 사용하면 고객이 Adobe Target을 사용할 때 사용자에 대한 권한을 관리할 수 있습니다. Adobe Target Delivery API을(를) 성공적으로 호출하려면 올바른 권한이 있는 토큰을 API 호출 내에 전달해야 합니다. 사용자 권한 부여 및 토큰을 검색하는 방법에 대해 자세히 알아보려면 이 설명서를 참조하세요.
curl -X POST \
'https://demo.tt.omtrdc.net/rest/v1/delivery?client=demo&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
}
},
"property" : {
"token": "08b62abd-c3e7-dfb2-da93-96b3aa724d81"
},
"execute": {
"mboxes" : [
{
"name" : "homepage",
"index" : 1
}
]
}
}'
해당 토큰이 있으면 모든 API 호출에 대해 property
-> token
에 전달합니다. 모든 API 호출 내에서 property
-> token
이(가) 전달되지 않으면 Adobe Target에서 content
을(를) 다시 가져올 수 없습니다.
{
"status": 200,
"requestId": "07ce783d-58b9-461c-9f4c-6873aeb00c01",
"client": "demo",
"id": {
"tntId": "d359234570e04f14e1faeeba02d6ab9914e.28_7"
},
"edgeHost": "mboxedge28.tt.omtrdc.net",
"execute": {
"mboxes": [
{
"index": 1,
"name": "homepage"
}
]
}
}
위에서 보듯이 property
-> token
을(를) 전달하지 않으면 콘텐츠를 다시 가져올 수 없습니다. API 호출에서 콘텐츠가 필요하지만 응답에서 콘텐츠를 검색하지 않는 경우, property
-> token
이(가) 제공되지 않았거나 올바른 권한 없이 전달되고 있기 때문일 수 있습니다.
recommendation-more-help
6906415f-169c-422b-89d3-7118e147c4e3