- Total
꿈꾸는리버리
[앱스토어 커넥트 유영하기] - 특가 코드 본문
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
'오뚝이 개발자 > iOS' 카테고리의 다른 글
[앱 디벨로퍼 유영하기] - 제품 페이지 최적화, 가장 인기 많은 앱스토어 이미지 발굴하기 (0) | 2025.03.03 |
---|---|
xcode에서 svg 이용할 때 주의할 점 (1) | 2024.12.15 |
[Xcode] Preview 활용기 (기기 변경, 라이트 다크 모드 등 ) (0) | 2024.11.25 |
KWDC ( iOS 컨퍼런스)에서 얻은 영감씨앗들로 열심히 농사해보자 (10) | 2024.10.29 |
[Xcode 6] 커스텀 자동 완성 만드는 방법 (Code Snippet) (0) | 2024.10.10 |