Adjust SDK가 제공하는 AdjustEvent
객체는 이벤트 정보를 구성하고 이러한 정보를 앱에서 Adjust 서버로 전송하는 데 사용할 수 있습니다.
AdjustEvent 객체 인스턴스화
public AdjustEvent ( string eventToken);
Adjust SDK를 사용하여 이벤트 정보를 전송하려면 AdjustEvent
객체를 인스턴스화해야 합니다. 이 객체에는 앱에서 이벤트가 발생할 때 Adjust로 전송되는 변수가 포함됩니다.
이벤트 객체를 인스턴스화하려면 새로운 AdjustEvent
인스턴스를 생성하고 다음 파라미터를 전달합니다.
eventToken
(string
): Adjust 이벤트 토큰
var adjustEvent = new AdjustEvent ( "abc123" );
Adjust. TrackEvent (adjustEvent);
이벤트 전송
public static void TrackEvent ( AdjustEvent adjustEvent );
Adjust 이벤트 토큰 을 연결하여 앱의 이벤트를 기록할 수 있습니다. 이벤트 기록 방법:
새 Adjust 이벤트 인스턴스를 만들고 이벤트 토큰을 문자열 인수로 전달합니다.
이벤트 인스턴스를 인수로 TrackEvent
메서드를 호출합니다.
var adjustEvent = new AdjustEvent ( "abc123" );
Adjust. TrackEvent (adjustEvent);
예시
본 예시에서는 사용자가 버튼을 조작할 때마다 g3mfiw
라는 토큰으로 이벤트를 기록하는 방법을 보여줍니다.
using Windows . UI . Xaml . Controls ;
namespace AdjustWSExample
public sealed partial class MainPage : Page
this . InitializeComponent ();
private void btnSimpleEvent_Click ( object sender , RoutedEventArgs e )
var simpleEvent = new AdjustEvent ( "g3mfiw" );
Adjust. TrackEvent (simpleEvent);
< Page x:Class = "AdjustWSExample.MainPage" xmlns = "http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x = "http://schemas.microsoft.com/winfx/2006/xaml" xmlns:local = "using:AdjustWSExample" xmlns:d = "http://schemas.microsoft.com/expression/blend/2008" xmlns:mc = "http://schemas.openxmlformats.org/markup-compatibility/2006" mc:Ignorable = "d" >
< Grid Background = "{ThemeResource ApplicationPageBackgroundThemeBrush}" >
< Button x:Name = "btnSimpleEvent" Content = "Record simple event" HorizontalAlignment = "Left" Margin = "10,0,0,0" VerticalAlignment = "Top" Click = "btnSimpleEvent_Click" >
매출 이벤트 기록
public void SetRevenue ( double revenue , string currency );
이벤트 인스턴스에서 매출 및 통화 속성을 설정하여 이벤트 관련 매출을 기록할 수 있습니다. 이 기능을 사용하여 앱 내에서 매출을 발생시키는 행동을 측정하시기 바랍니다.
이러한 속성을 설정하려면 SetRevenue
메서드를 호출하고 다음 인수를 전달합니다.
revenue
(double
): 해당 이벤트에 의해 창출된 매출 금액
currency
(string
): 이벤트 통화의 ISO 4217 코드
var adjustEvent = new AdjustEvent ( "abc123" );
adjustEvent. SetRevenue ( 0.01 , "EUR" );
Adjust. TrackEvent (adjustEvent);
예시
본 예시에서는 사용자가 버튼을 조작할 때마다 g3mfiw
라는 토큰으로 이벤트를 기록하는 방법을 보여줍니다. 이 함수는 이벤트의 revenue
속성을 0.25
, currency
속성을 EUR
로 설정합니다.
using Windows . UI . Xaml . Controls ;
namespace AdjustWSExample
public sealed partial class MainPage : Page
this . InitializeComponent ();
private void btnRevenueEvent_Click ( object sender , RoutedEventArgs e )
var revenueEvent = new AdjustEvent ( "g3mfiw" );
revenueEvent. SetRevenue ( 0.25 , "EUR" )
Adjust. TrackEvent (revenueEvent);
< Page x:Class = "AdjustWSExample.MainPage" xmlns = "http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x = "http://schemas.microsoft.com/winfx/2006/xaml" xmlns:local = "using:AdjustWSExample" xmlns:d = "http://schemas.microsoft.com/expression/blend/2008" xmlns:mc = "http://schemas.openxmlformats.org/markup-compatibility/2006" mc:Ignorable = "d" >
< Grid Background = "{ThemeResource ApplicationPageBackgroundThemeBrush}" >
< Button x:Name = "btnRevenueEvent" Content = "Record revenue event" HorizontalAlignment = "Left" Margin = "10,0,0,0" VerticalAlignment = "Top" Click = "btnRevenueEvent_Click" >
매출 이벤트 중복 제거
public string PurchaseId { get; set; }
중복 이벤트 기록을 방지하기 위해 선택적 식별자를 전달할 수 있습니다. SDK는 최근 순으로 10개의 ID를 저장하고 구매 ID가 있는 매출 이벤트를 건너뜁니다.
식별자를 설정하려면 구매 ID를 이벤트 객체의 PurchaseId
속성에 할당합니다.
AdjustEvent event = new AdjustEvent ( "abc123" );
event. SetRevenue ( 0.01 , "EUR" );
event.PurchaseId = "{PurchaseId}" ;
Adjust. trackEvent (event);
예시
본 예시에서는 사용자가 버튼을 조작할 때마다 g3mfiw
라는 토큰으로 이벤트를 기록하는 방법을 보여줍니다. 이 함수로 PurchaseId
속성이 5e85484b-1ebc-4141-aab7-25b869e54c49
로 설정됩니다.
using Windows . UI . Xaml . Controls ;
namespace AdjustWSExample
public sealed partial class MainPage : Page
this . InitializeComponent ();
private void btnUniqueEvent_Click ( object sender , RoutedEventArgs e )
var uniqueEvent = new AdjustEvent ( "g3mfiw" );
var uniqueId = "5e85484b-1ebc-4141-aab7-25b869e54c49"
uniqueEvent.PurchaseId = uniqueId
Adjust. TrackEvent (uniqueEvent);
< Page x:Class = "AdjustWSExample.MainPage" xmlns = "http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x = "http://schemas.microsoft.com/winfx/2006/xaml" xmlns:local = "using:AdjustWSExample" xmlns:d = "http://schemas.microsoft.com/expression/blend/2008" xmlns:mc = "http://schemas.openxmlformats.org/markup-compatibility/2006" mc:Ignorable = "d" >
< Grid Background = "{ThemeResource ApplicationPageBackgroundThemeBrush}" >
< Button x:Name = "btnUniqueEvent" Content = "Record unique event" HorizontalAlignment = "Left" Margin = "10,0,0,0" VerticalAlignment = "Top" Click = "btnUniqueEvent_Click" >
콜백 파라미터 추가
public void AddCallbackParameter ( string key , string value );
Adjust 대시보드에 콜백 URL 을 등록하면 SDK가 이벤트를 기록할 때 ADK가 GET 요청을 콜백 URL로 보냅니다.
서버로 보낼 콜백 파라미터를 구성할 수 있습니다. 이벤트에 대한 파라미터 구성이 완료되면 SDK는 이를 콜백 URL 에 추가합니다. 해당 정보를 사용하여, BI 시스템을 통해 사용자 인앱 행동을 분석할 수 있습니다.
string
키-값 인수와 함께 addCallbackParameter
메서드를 호출하여 이벤트에 콜백 파라미터를 추가합니다. 이 메서드를 여러 번 호출함으로써 여러 파라미터를 추가할 수 있습니다.
var adjustEvent = new AdjustEvent ( "abc123" );
adjustEvent. AddCallbackParameter ( "key" , "value" );
adjustEvent. AddCallbackParameter ( "foo" , "bar" );
Adjust. TrackEvent (adjustEvent);
Adjust SDK는 이벤트를 측정하고 콜백 파라미터가 추가된 URL로 요청을 전송합니다. 예를 들어 URL https://www.mydomain.com/callback
을 등록한 경우 콜백은 다음과 같습니다.
https://www.mydomain.com/callback? key=value & foo=bar
Adjust는 사용자의 커스텀 콜백 파라미터를 보관하지 않습니다. 커스텀 파라미터는 콜백 URL에만 추가됩니다.
CSV 업로드를 사용하는 경우, 반드시 CSV 정의에 파라미터를 추가하시기 바랍니다.
Adjust는 SDK에서 URL로 정보를 전송하는 데 사용할 수 있는 다양한 플레이스홀더를 지원합니다. 예를 들어, iOS의 경우 {idfa}
플레이스홀더, Android의 경우 {gps_adid}
플레이스홀더입니다. {publisher_parameter}
플레이스홀더는 단일 문자열의 모든 콜백 파라미터를 나타냅니다.
Adjust 콜백 가이드 에서 사용 가능한 값의 전체 목록을 비롯하여 URL 콜백을 사용하는 방법을 자세히 알아보실 수 있습니다.
예시
본 예시에서는 사용자가 버튼을 조작할 때마다 g3mfiw
라는 토큰으로 이벤트를 기록하는 방법을 보여줍니다. 다음 콜백 파라미터가 추가됩니다.
다양한 event_token
이벤트별로 생성되는 revenue_amount
콜백 URL의 결과는 다음과 같습니다.
http://www.mydomain.com/callback? event_token=g3mfiw & revenue_amount=0.05
using Windows . UI . Xaml . Controls ;
namespace AdjustWSExample
public sealed partial class MainPage : Page
this . InitializeComponent ();
private void btnCallbackEvent_Click ( object sender , RoutedEventArgs e )
var callbackEvent = new AdjustEvent ( "g3mfiw" );
callbackEvent. AddCallbackParameter ( "event_token" , "g3mfiw" )
callbackEvent. AddCallbackParameter ( "revenue_amount" , "0.05" )
Adjust. TrackEvent (callbackEvent);
< Page x:Class = "AdjustWSExample.MainPage" xmlns = "http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x = "http://schemas.microsoft.com/winfx/2006/xaml" xmlns:local = "using:AdjustWSExample" xmlns:d = "http://schemas.microsoft.com/expression/blend/2008" xmlns:mc = "http://schemas.openxmlformats.org/markup-compatibility/2006" mc:Ignorable = "d" >
< Grid Background = "{ThemeResource ApplicationPageBackgroundThemeBrush}" >
< Button x:Name = "btnCallbackEvent" Content = "Record callback event" HorizontalAlignment = "Left" Margin = "10,0,0,0" VerticalAlignment = "Top" Click = "btnCallbackEvent_Click" >
파트너 파라미터 추가
public void AddPartnerParameter ( string key , string value );
파트너 파라미터 를 추가하여 네트워크 파트너에게 추가 정보를 전송할 수 있습니다.
Adjust는 설정한 외부 파트너 에게 파트너 파라미터를 전송합니다. 이러한 정보는 보다 세분화된 분석과 리타겟팅에 유용할 것입니다. 파트너에 대해 파라미터를 설정하고 활성화하면 Adjust 서버는 해당 파라미터를 포워드 합니다.
파트너 파라미터는 기본 설정에 따라 로 데이터에 나타나지 않습니다. {partner_parameters}
플레이스홀더를 추가하여 단일 문자열로 수신할 수 있습니다.
string
키-값 인수와 함께 addPartnerParameter
메서드를 호출하여 이벤트에 파트너 파라미터를 추가합니다. 이 메서드를 여러 번 호출함으로써 여러 파라미터를 추가할 수 있습니다.
var adjustEvent = new AdjustEvent ( "abc123" );
adjustEvent. AddPartnerParameter ( "key" , "value" );
adjustEvent. AddPartnerParameter ( "foo" , "bar" );
Adjust. TrackEvent (adjustEvent);
예시
본 예시에서는 사용자가 버튼을 조작할 때마다 g3mfiw
라는 토큰으로 이벤트를 기록하는 방법을 보여줍니다. 다음 파트너 파라미터가 추가됩니다.
관련 제품의 product_id
이벤트를 트리거한 사용자의 user_id
using Windows . UI . Xaml . Controls ;
namespace AdjustWSExample
public sealed partial class MainPage : Page
this . InitializeComponent ();
private void btnPartnerEvent_Click ( object sender , RoutedEventArgs e )
var partnerEvent = new AdjustEvent ( "g3mfiw" );
partnerEvent. AddPartnerParameter ( "product_id" , "29" )
partnerEvent. AddPartnerParameter ( "user_id" , "835" )
Adjust. TrackEvent (partnerEvent);
< Page x:Class = "AdjustWSExample.MainPage" xmlns = "http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x = "http://schemas.microsoft.com/winfx/2006/xaml" xmlns:local = "using:AdjustWSExample" xmlns:d = "http://schemas.microsoft.com/expression/blend/2008" xmlns:mc = "http://schemas.openxmlformats.org/markup-compatibility/2006" mc:Ignorable = "d" >
< Grid Background = "{ThemeResource ApplicationPageBackgroundThemeBrush}" >
< Button x:Name = "btnPartnerEvent" Content = "Record partner event" HorizontalAlignment = "Left" Margin = "10,0,0,0" VerticalAlignment = "Top" Click = "btnPartnerEvent_Click" >
콜백 ID 추가
public string CallbackId { get; set; }
트래킹하려는 각 이벤트에 커스텀 문자열 ID를 추가할 수도 있습니다. Adjust 서버는 이벤트 콜백에서 이러한 식별자를 보고합니다. 이를 통해 성공적으로 트래킹된 이벤트 확인이 가능합니다.
식별자를 이벤트 객체의 CallbackId
속성에 할당해 이 식별자를 설정합니다.
var adjustEvent = new AdjustEvent ( "abc123" );
adjustEvent.CallbackId = "Your-Custom-Id" ;
Adjust. TrackEvent (adjustEvent);
예시
본 예시에서는 사용자가 버튼을 조작할 때마다 g3mfiw
라는 토큰으로 이벤트를 기록하는 방법을 보여줍니다. callbackId
가 f2e728d8-271b-49ab-80ea-27830a215147
로 설정되었습니다.
using Windows . UI . Xaml . Controls ;
namespace AdjustWSExample
public sealed partial class MainPage : Page
this . InitializeComponent ();
private void btnCustomEvent_Click ( object sender , RoutedEventArgs e )
var customEvent = new AdjustEvent ( "g3mfiw" );
customEvent.CallbackId = "f2e728d8-271b-49ab-80ea-27830a215147"
Adjust. TrackEvent (customEvent);
< Page x:Class = "AdjustWSExample.MainPage" xmlns = "http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x = "http://schemas.microsoft.com/winfx/2006/xaml" xmlns:local = "using:AdjustWSExample" xmlns:d = "http://schemas.microsoft.com/expression/blend/2008" xmlns:mc = "http://schemas.openxmlformats.org/markup-compatibility/2006" mc:Ignorable = "d" >
< Grid Background = "{ThemeResource ApplicationPageBackgroundThemeBrush}" >
< Button x:Name = "btnCustomEvent" Content = "Record custom event" HorizontalAlignment = "Left" Margin = "10,0,0,0" VerticalAlignment = "Top" Click = "btnCustomEvent_Click" >