Metrics
1. 프로퍼티 요청하기
POST /property
headers {
"Authorization": {{APP_KEY}}
}
body {
"uid": {{UID}},
"value": {{VALUE}} // json string
}요청 예시
const res1 = await fetch('https://api-v2.adrop.io/property', {
method: 'POST',
headers: {
'Authorization': {{APP_KEY}},
},
body: JSON.stringify({
uid: {{UID}},
value: JSON.stringify({
user_type: 3,
user_sex: '여자',
user_age: 1990,
favorite_area: '종로구'
})
})
})2. 이벤트 요청하기
3. 문맥 타겟팅 광고 요청하기
앱 SDK 에서 수집된 타겟팅 프로퍼티 웹에서 사용하기
프로퍼티 적용 확인하기

수집중 데이터 확인하기


Last updated