본 가이드에서는 Adjust의 구매 검증 SDK에서 SDK v5에 내장된 구매 검증 기능으로 마이그레이션하는 방법을 확인하실 수 있습니다. SDK v5 구매 검증 워크플로우는 간소화된 구매 검증 방식입니다.
구매 검증 SDK의 검증은 다음의 3단계로 나뉩니다.
구매 검증 SDK를 초기화합니다.
var adjustPVConfig = new ADJPConfig (
ADJPEnvironment.Production
adjustPVConfig. SetLogLevel (ADJPLogLevel.Info);
new GameObject ( "AdjustPurchase" ). AddComponent < adjustpurchase >();
AdjustPurchase. Init (adjustPVConfig);
구매를 인증합니다.
// purchase verification request on iOS
AdjustPurchase. VerifyPurchaseiOS ( "{Receipt}" , "{TransactionID}" , "{ProductId}" , VerificationInfoDelegate);
// purchase verification request on Android
AdjustPurchase. VerifyPurchaseAndroid ( "{ItemSKU}" , "{ItemToken}" , "{DeveloperPayload}" , VerificationInfoDelegate);
private void VerificationInfoDelegate ( ADJPVerificationInfo verificationInfo )
Debug. Log ( "Verification info callback!" );
Debug. Log ( "Message: " + verificationInfo.Message);
Debug. Log ( "Status code: " + verificationInfo.StatusCode);
Debug. Log ( "Verification state: " + verificationInfo.VerificationState);
인증 결과에 따라 AdjustEvent
객체를 구성하고 Adjust에 전송합니다.
AdjustEvent adjustEvent = new AdjustEvent ( "abc123" );
adjustEvent. setRevenue ( 6.0 , "EUR" );
adjustEvent. setProductId ( "product-id" );
adjustEvent. setTransactionId ( "transaction-id" );
adjustEvent. setPurchaseToken ( "purchase-token" ); // Android only
adjustEvent. setReceipt ( "receipt" ); // iOS only
Adjust. trackEvent (adjustEvent);
SDK v5에서는 이 워크플로우가 간소화되었습니다. Adjust.verifyAndTrackAppStorePurchase()
및 Adjust.verifyAndTrackPlayStorePurchase()
메서드를 통해 Adjust 서버로 이벤트를 보내고 인증 상태를 콜백으로 받을 수 있습니다. Adjust는 이벤트와 인증 상태를 자동으로 기록합니다.
가이드
이 가이드를 참조하여 구매 검증 SDK에서 SDK v5에 내장된 구매 검증 기능으로 마이그레이션하시기 바랍니다.
1. 구매 검증 SDK 삭제
시작을 위해 Adjust 구매 검증 SDK를 삭제하시기 바랍니다.
2. 구매 검증 SDK 코드 삭제
Adjust 구매 검증 SDK 삭제가 완료되면, 프로젝트에서 모든 구매 검증 코드를 삭제해야 합니다.
3. SDK v5 구매 검증 사용을 위한 마이그레이션
기존의 구매 검증 코드를 삭제한 후에는 이를 SDK v5에 내장된 구매 검증 메서드로 교체할 수 있습니다. Adjust SDK로 구매를 검증하는 방법에는 두 가지가 있습니다.
구매를 나타내는 AdjustEvent
객체를 만들고 타깃 스토어에 대한 구매 속성을 구성합니다.
구매를 나타내는 AdjustAppStorePurchase
(Apple 앱 스토어) 또는 AdjustPlayStorePurchase
(Google 플레이 스토어) 객체를 생성합니다.
이벤트 기록 및 구매 인증
검증을 위해 매출 이벤트를 전송하고 승인 상태를 수신하려면 다음의 단계를 수행하시기 바랍니다.
이벤트 토큰으로 AdjustEvent
객체를 인스턴스화하고 다음 파라미터를 설정합니다.
ProductId
(string
): 성공적으로 구매된 아이템의 제품 ID.
TransactionId
(string
): 인증할 거래의 ID.
다음 인수로 Adjust.VerifyAndTrackPlayStorePurchase
메서드를 호출합니다.
event
(AdjustEvent
): 인스턴스화된 이벤트 객체.
callback
(Action
): 인수로 AdjustPurchaseVerificationResult
객체를 수신하는 델리게이트 콜백 함수.
이 예시에서, 구매 검증 응답은 logging daemon으로 출력됩니다.
AdjustEvent adjustEvent = new AdjustEvent ( "abc123" );
adjustEvent. SetRevenue ( 6.66 , "CAD" );
adjustEvent.TransactionId = "transaction-id" ;
adjustEvent.ProductId = "product-id" ;
Adjust. VerifyAndTrackPlayStorePurchase (adjustEvent, verificationResult =>
Debug. Log ( "Verification status: " + verificationResult.VerificationStatus);
Debug. Log ( "Code: " + verificationResult.Code);
Debug. Log ( "Message: " + verificationResult.Message);
검증을 위해 매출 이벤트를 전송하고 승인 상태를 수신하려면 다음의 단계를 수행하시기 바랍니다.
이벤트 토큰으로 AdjustEvent
객체를 인스턴스화하고 다음 파라미터를 설정합니다.
ProductId
(String
): 구매한 제품의 ID.
PurchaseToken
(String
): 구매와 관련된 구매 토큰.
다음 인수로 Adjust.VerifyAndTrackPlayStorePurchase
메서드를 호출합니다.
ajustEvent
(AdjustEvent
): 인스턴스화된 이벤트 객체.
callback
(Action
): 인수로 AdjustPurchaseVerificationResult
객체를 수신하는 델리게이트 콜백 함수.
이 예시에서, 구매 검증 응답은 logging daemon으로 출력됩니다.
AdjustEvent adjustEvent = new AdjustEvent ( "abc123" );
adjustEvent. SetRevenue ( 6.66 , "CAD" );
adjustEvent.ProductId = "product-id" ;
adjustEvent.PurchaseToken = "purchase-token" ;
Adjust. VerifyAndTrackPlayStorePurchase (adjustEvent, verificationResult =>
Debug. Log ( "Verification status: " + verificationResult.VerificationStatus);
Debug. Log ( "Code: " + verificationResult.Code);
Debug. Log ( "Message: " + verificationResult.Message);
구매만 검증
개별 앱 스토어 구매를 전송하고 구매 상태를 수신하려면 다음의 단계를 수행하시기 바랍니다.
다음 인수를 사용하여 AdjustAppStorePurchase
객체를 인스턴스화합니다.
TransactionId
(string
): 인증할 거래의 ID.
ProductId
(string
): 성공적으로 구매된 아이템의 제품 ID.
다음 인수로 Adjust.VerifyAppStorePurchase
메서드를 호출합니다.
purchase
(AdjustAppStorePurchase
): 인스턴스화된 이벤트 객체.
callback
(Action
): 인수로 AdjustPurchaseVerificationResult
객체를 수신하는 델리게이트 콜백 함수.
이 예시에서, 구매 검증 응답은 logging daemon으로 출력됩니다.
AdjustAppStorePurchase purchase = new AdjustAppStorePurchase ( "transaction-id" , "product-id" );
Adjust. VerifyAppStorePurchase (purchase, verificationResult =>
Debug. Log ( "Verification status: " + verificationResult.VerificationStatus);
Debug. Log ( "Code: " + verificationResult.Code);
Debug. Log ( "Message: " + verificationResult.Message);
독립형 Play Store 구매를 전송하고, 구매 상태를 확인하려면 다음의 단계를 수행하시기 바랍니다.
다음 인수를 사용하여 AdjustPlayStorePurchase
를 인스턴스화합니다.
ProductId
(string
): 구매한 제품의 ID.
PurchaseToken
(string
): 구매와 관련된 구매 토큰.
다음 인수로 Adjust.VerifyPlayStorePurchase
메서드를 호출합니다.
purchase
(AdjustPlayStorePurchase
): 인스턴스화된 구매 객체.
verificationResultCallback
(Action
): 인수로 AdjustPurchaseVerificationResult
객체를 수신하는 델리게이트 콜백 함수.
이 예시에서, 구매 검증 응답은 logging daemon으로 출력됩니다.
AdjustPlayStorePurchase purchase = new AdjustPlayStorePurchase ( "product-id" , "purchase-token" );
Adjust. VerifyPlayStorePurchase (purchase, verificationResult =>
Debug. Log ( "Verification status: " + verificationResult.VerificationStatus);
Debug. Log ( "Code: " + verificationResult.Code);
Debug. Log ( "Message: " + verificationResult.Message);