获取应用内购买的订阅到期日期 - 从appStoreReceiptURL开始

时间:2013-11-17 09:27:37

标签: ios objective-c in-app-purchase

我有一个应用内购买,这是一个自动续订订阅。从完成的应用程序内购买,我需要能够检索订阅到期日期,以便我知道订阅何时不再有效。我的理解是,这意味着(现在从iOS 7开始)从appStoreReceiptURL开始,获取它背后的数据,然后以某种方式从那里我可以访问有关应用内购买的元素。

但是从那里它有雾,我在网上找到的代码样本似乎都没有用。其中很多都是iOS 7的过时。大多数都没有处理订阅。我真正需要的是一些示例代码,它从appStoreReceiptURL直接到订阅到期日期,中间代码最少。出于某种原因,这似乎非常困难,但我不明白为什么。人们常常将收据验证纳入其中,这似乎是一个好主意,但它也增加了另一个巨大的复杂性,使我的主要目标变得模糊,而且收据验证码似乎总是不起作用。而我似乎总是碰到墙壁的地方是我采用NSData和base64编码的地方。它看起来应该是这样的:

NSURL *receiptURL = [[NSBundle mainBundle] appStoreReceiptURL];
NSLog(@"receiptURL:%@", receiptURL);

NSData *receiptData = [NSData dataWithContentsOfURL:receiptURL];
NSLog(@"receiptData:%@", receiptData);

NSString *receiptString = [self base64forData:receiptData];
NSLog(@"receiptString:%@", receiptString);

base64forData方法如下所示:

// from http://stackoverflow.com/questions/2197362/converting-nsdata-to-base64
+ (NSString*)base64forData:(NSData*)theData {
    const uint8_t* input = (const uint8_t*)[theData bytes];
    NSInteger length = [theData length];
    static char table[] = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/=";
    NSMutableData* data = [NSMutableData dataWithLength:((length + 2) / 3) * 4];
    uint8_t* output = (uint8_t*)data.mutableBytes;
    NSInteger i;
    for (i=0; i < length; i += 3) {
        NSInteger value = 0;
        NSInteger j;
        for (j = i; j < (i + 3); j++) {
            value <<= 8;

            if (j < length) {
                value |= (0xFF & input[j]);
            }
        }
        NSInteger theIndex = (i / 3) * 4;
        output[theIndex + 0] =                    table[(value >> 18) & 0x3F];
        output[theIndex + 1] =                    table[(value >> 12) & 0x3F];
        output[theIndex + 2] = (i + 1) < length ? table[(value >> 6)  & 0x3F] : '=';
        output[theIndex + 3] = (i + 2) < length ? table[(value >> 0)  & 0x3F] : '=';
    }
    return [[NSString alloc] initWithData:data encoding:NSASCIIStringEncoding];
}

在输出中,我返回一个有效的receiptURL,但只有在我执行app delegate中的代码时才会这样。如果我尝试在像我的商店观察者这样的子类中执行它,它总是返回nil。我现在忽略了这一点,只是在app委托中执行它。然后,如果receiptURL有效,那么我得到一个有效的receiptData块,然后receiptString为nil。所以好像base64forData方法不起作用,或者整个方法可能都错了?

从iOS 7中未弃用的已完成SKPaymentTransaction获取订阅到期日期的最简单方法是什么?

1 个答案:

答案 0 :(得分:1)

我们使用Apple的应用商店收据验证服务。 Tom Kincaid对这个问题的回答有很好的示例代码: -

StackOverflow app store receipt question