iOS In-App Purchases

iOS IAP自动续费(一)和沙盒账号.md

2020-09-08  本文已影响0人  儒徒

先看官方文档:
https://developer.apple.com/app-store/subscriptions/
https://developer.apple.com/cn/app-store/subscriptions/

升降级的特殊

订阅管理跳转URL

老的地址:https://buy.itunes.apple.com/WebObjects/MZFinance.woa/wa/manageSubscriptions

新的地址:https://apps.apple.com/account/subscriptions(模拟器打不开)

#ifdef __IPHONE_10_0
    #if __IPHONE_10_0 <= __IPHONE_OS_VERSION_MAX_ALLOWED
    if ([[UIApplication sharedApplication] respondsToSelector:@selector(openURL:options:completionHandler:)])
    {
        [[UIApplication sharedApplication] openURL:[NSURL URLWithString:@"https://apps.apple.com/account/subscriptions"] options:[NSDictionary dictionary] completionHandler:^(BOOL success) {}];
    }
    #endif
#else
    [[UIApplication sharedApplication] openURL:[NSURL URLWithString:@"https://apps.apple.com/account/subscriptions"]];
#endif

沙盒账号

沙盒账号订阅

实际时限 续订间隔时限
1周 3分钟
1个月 5分钟
2个月 10分钟
3个月 15分钟
6个月 30分钟
1年 1小时

StoreKit Test

2020年新出的一款适合开发者的功能:StoreKit Test
通过Xcode做各种模拟测试,比如缩短订阅周期为1s、5s管理沙盒账号处理退款、续订等各种订阅处理

上一篇下一篇

猜你喜欢

热点阅读