4

我想发布一个具有自动续订订阅的 iOS 应用。虽然有大量关于这方面的信息,但很多都已经过时了,所以我将说明我到目前为止所取得的成就。

  1. 我在 Swift 2.0 中工作,所以任何客观的 C 代码都对我没有帮助。

  2. 我不会使用我自己的服务器与 Apple 通信来验证收据,所以我相信我需要让应用程序直接与 Apple 服务器通信,或者我可以在设备上本地解析收据。

  3. 我已经能够使用以下代码在设备上找到一张收据(不确定是否有多个)

    func checkForReceipt() {
        let receiptUrl = NSBundle.mainBundle().appStoreReceiptURL
    
        let fileExists = NSFileManager.defaultManager().fileExistsAtPath(receiptUrl!.path!)
    
        if fileExists {
    
            let receiptData = NSData(contentsOfURL: receiptUrl!)
    
            //Now what do I do to decode the data and validate the receipt
    
        } else{
            requestReceipt()
        }
    }
    

但是,我无法弄清楚如何解码收据,以便确定到期日期和其他验证步骤,以确保它是有效的收据。

我不得不说非常令人沮丧的是,对开发人员来说非常重要和有用的东西却如此难以理解和定位。非常感谢任何帮助,希望对其他人有用。

4

1 回答 1

4

这是我发现有用的链接

如果我的代码不清楚,请参考它

下面是我用来检查我的 ar-iap 订阅状态​​的功能代码

进一步阅读下文,了解作为评论找到的每个对应 * 的一些额外信息

func checkForReceipt() {
    let receiptUrl = NSBundle.mainBundle().appStoreReceiptURL

    let fileExists = NSFileManager.defaultManager().fileExistsAtPath(receiptUrl!.path!)

    if fileExists {

        let receiptData = NSData(contentsOfURL: receiptUrl!)

        let receiptToString = receiptData!.base64EncodedStringWithOptions([])
        let dict = ["receipt-data" : receiptToString, "password" : "YOUR SHARED SECRET"] //**
        do {
            let request = try NSJSONSerialization.dataWithJSONObject(dict, options: []) as NSData!
            let storeURL = NSURL(string:"https://sandbox.itunes.apple.com/verifyReceipt")! //***
            let storeRequest = NSMutableURLRequest(URL: storeURL)
            storeRequest.HTTPMethod = "POST"
            storeRequest.HTTPBody = request

            let session = NSURLSession(configuration: NSURLSessionConfiguration.defaultSessionConfiguration())
            let dataTask = session.dataTaskWithRequest(storeRequest, completionHandler: { (data: NSData?, response: NSURLResponse?, connection: NSError?) -> Void in
                do {
                    let jsonResponse: NSDictionary = try (NSJSONSerialization.JSONObjectWithData(data!, options: .MutableContainers) as? NSDictionary)!
                    //****
                    let expDate: NSDate = self.expirationDateFromResponse(jsonResponse)!
                    print(expDate)
                } catch {
                     //handle NSJSONSerialization errors
                }

            })
            dataTask.resume()
        } catch {
            //handle NSJSONSerialization errors
        }
    } else {
        requestReceipt()
    }
}

** 您可以从您的 iTunes Connect 帐户获取共享密钥:转到 MyApps >“yourappname”> 功能 > 查看共享密钥 > 生成共享密钥,然后在 dict 的密码字段中插入您生成的密钥

*** 确保在进行生产时将 storeURL 更改为“ https://buy.itunes.apple.com/verifyReceipt

**** expireDateFromResponse(jsonResponse: NSDictionary) -> NSDate? 是一个函数,它读取苹果的 json 响应并返回 ar iap 的过期日期

于 2016-01-08T09:47:39.457 回答