A lightweight iOS library for reading and validating In-App Receipt.
- Parse the Payload and Extract the Receipt Attributes
- Hash Verification
- Verify the Receipt Signature
- Verify Version and Bundle Identifiers
To integrate TPInAppReceipt into your project using CocoaPods, specify it in your Podfile
:
platform :ios, '8.3'
target 'YOUR_TARGET' do
use_frameworks!
pod 'TPInAppReceipt'
end
Then, run the following command:
$ pod install
- iOS 8.3+ / OSX 10.11+
- Xcode 8.0+
- Swift 3.0+
OpenSSL is included as a built by https://github.com/jasonacox/Build-OpenSSL-cURL
do {
let receipt = try InAppReceipt.localReceipt()
//let receiptData: Data = ...
//let receipt = try InAppReceipt.receipt(from: receiptData)
} catch {
print(error)
}
// Retrieve Original TransactionIdentifier for Product Name
receipt.originalTransactionIdentifier(ofProductIdentifier: subscriptionName)
// Retrieve Active Auto Renewable Subscription's Purchases for Product Name and Specific Date
receipt.activeAutoRenewableSubscriptionPurchases(ofProductIdentifier: subscriptionName, forDate: Date())
// Retrieve All Purchases for Product Name
receipt.purchases(ofProductIdentifier: subscriptionName)
do {
try r.verify()
} catch ReceiptValidatorError.hashValidationFaied {
// Do smth
} catch ReceiptValidatorError.receiptSignatureVerificationFailed {
// Do smth
} catch {
// Do smth
}
In the above example, the validation process goes through the all verification steps. First, it verifies signature and make sure that it's valid. Second, it makes the hash validation by computing the hash of the GUID and matching with receipt's hash.
do {
try r.verifyHash()
} catch ReceiptValidatorError.hashValidationFaied {
// Do smth
} catch {
// Do smth
}
do {
try r.verifySignature()
} catch {
// Do smth
}