반응형
LinkedIn 개발자로 성장하면서 남긴 발자취들을 확인하실 수 있습니다.
Github WWDC Student Challenge 및 Cherish, Tiramisul 등 개발한 앱들의 코드를 확인하실 수 있습니다.
개인 앱 : Cherish 내 마음을 들여다보는 시간, 체리시는 디자이너와 PM과 함께 진행 중인 1인 개발 프로젝트입니다.
10년 후, 20년 후 나는 어떤 스토리 텔러가 되어 있을지 궁금하다. 내가 만약에 아직 조금 더 탐구하고 싶은 게 있고, 궁금한 게 있다면, 그게 설사 지금 당장의 내 인생에 도움이 안 되는 것 같더라도 경험해보자. 그 경험들을 온전히 즐기며 내 것으로 만들고, 내 일에 녹여내고... 그러다보면 그 점들이 모여 나란 사람을 그려내는 선이 될 테니까.

Recent Posts
Recent Comments
Total
관리 메뉴

꿈꾸는리버리

[앱스토어 커넥트 유영하기] - 특가 코드 본문

오뚝이 개발자/iOS

[앱스토어 커넥트 유영하기] - 특가 코드

rriver2 2025. 1. 9. 11:54
반응형

 AppStore에서 생성방법.. 

1) 특가 코드 생성

 

2) 특가 코드 생성 이후 일회용 코드 생성 

- 일회용 코드 생성

- 사용자 설정 코드 생성

 

2-1) 일회용 코드 일시

- 코드 생성 이후

파일을 다운받으면

아래와 같이 Code를 볼 수 있다.

해당 URL을 사용자에게 보내주면 아래와 같이 앱스토어에서 2주 무료 체험 이후 구독을 이용할 수 있게 된다.

 

 코드 

1) 따로 특가 코드를 사용했는지 확인할 필요없음

특가코드로 trial 이용 중에는 구독 결제된 걸로 판독되는 듯

private func updateCustomerProductStatus() async {
        for await result in Transaction.currentEntitlements {
            do {
                let transaction = try checkVerified(result)
                switch transaction.productType {
                case .consumable:
                    // 소모형
                case .autoRenewable:
                    // 구독제 -> 특가도 결제된 걸로 들어감
                default:
                    break
                }
                await transaction.finish()
            } catch(let error) {
                // 에러
            }
        }
    }

 

2) 고객이 앱 내에서 특가 코드를 사용할 수 있도록

- 원활한 고객 경험을 위해 자격 요건 또는 사용 여부 제한을 모두 언급하라고 가이드함

import SwiftUI
import StoreKit


struct ContentView: View {
    @State private var redeemSheetIsPresented = false
    
    var body: some View {
        Button("Present offer code redemption sheet.") {
            redeemSheetIsPresented = true
        }
        .offerCodeRedemption(isPresented: $redeemSheetIsPresented) { result in
            // Handle result
        }
    }
}

 

 

 참고사항 

- 구독에 프로모션 이미지를 추가하면 앱 아이콘 대신 해당 이미지가 표시됨 (구독 탭 하단의 이미지에 있음)

 

 

 출처 

https://developer.apple.com/kr/app-store/subscriptions/#providing-subscription-offers

 

자동 갱신 구독 - App Store - Apple Developer

앱에서 원활한 자동 갱신 구독 경험을 제공해 보세요. 1년 후에는 구독 서비스를 통해 더 많은 수익을 얻을 수 있으며 보다 유연한 요금제를 적용할 수 있습니다.

developer.apple.com

https://developer.apple.com/kr/help/app-store-connect/manage-subscriptions/set-up-offer-codes

 

 

특가 코드 준비 - 구독 관리 - App Store Connect - 도움말 - Apple Developer

 

developer.apple.com

https://developer.apple.com/kr/videos/play/tech-talks/10868/

 

Subscription offer codes - Tech Talks - 비디오 - Apple Developer

Subscription offer codes can help you acquire, retain, and win back subscribers as you grow your business. Learn about configuration...

developer.apple.com

https://developer.apple.com/documentation/storekit/storeview/4203466-offercoderedemption

 

offerCodeRedemption(isPresented:onCompletion:) | Apple Developer Documentation

Presents a sheet that enables users to redeem subscription offer codes that you configure in App Store Connect.

developer.apple.com

https://developer.apple.com/kr/videos/play/tech-talks/110150/

 

Get started with custom offer codes - Tech Talks - 비디오 - Apple Developer

Discover how you can complement existing offer codes campaigns with custom, repeatable codes to provide even more flexibility to acquire...

developer.apple.com

 

반응형
Comments