Skip to content

Reading and Validating In App Store Receipt (swift3 + bitcode)

License

Notifications You must be signed in to change notification settings

joaocolaco/TPInAppReceipt

 
 

Repository files navigation

CocoaPods Compatible Platform GitHub license

TPInAppReceipt

A lightweight iOS library for reading and validating In-App Receipt.

Features

  • Parse the Payload and Extract the Receipt Attributes
  • Hash Verification
  • Verify the Receipt Signature
  • Verify Version and Bundle Identifiers

Installation

CocoaPods

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

Requirements

  • iOS 8.3+ / OSX 10.11+
  • Xcode 8.0+
  • Swift 3.0+

Openssl

OpenSSL is included as a built by https://github.com/jasonacox/Build-OpenSSL-cURL

Usage

Working With a Receipt

do {
  let receipt = try InAppReceipt.localReceipt() 
  
  //let receiptData: Data = ...
  //let receipt = try InAppReceipt.receipt(from: receiptData)
} catch {
  print(error)
}

Useful methods

// 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)

Receipt Validation

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.

Hash Validation

do {
    try r.verifyHash()
} catch ReceiptValidatorError.hashValidationFaied {
    // Do smth
} catch {
    // Do smth
}

Signature Validation

do {
    try r.verifySignature()
} catch {
    // Do smth
}

About

Reading and Validating In App Store Receipt (swift3 + bitcode)

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Swift 89.8%
  • Ruby 9.5%
  • Objective-C 0.7%