Giter Club home page Giter Club logo

itunes-validation's Introduction

Build Status Codacy Badge

Spin up a Node app so you can validate iOS app receipts with the App Store.

Installation Examples

Local

$ mkdir myapp && cd myapp
$ npm init // configure project
$ npm install itunes-validation --save

Add var val = require('itunes-validation'); to your index.js file. Run node index.js.

Or

$ git clone https://github.com/stuartbreckenridge/itunes-validation.git
$ cd itunes-validation
$ npm install
$ npm start

Heroku

  1. Fork https://github.com/stuartbreckenridge/itunes-validation.git to your GitHub account
  2. Create a New App in Heroku
  3. Under Deployment Method select GitHub (connect to your GitHub account if necessary)
  4. Find the repository in the Connect to GitHub section and click Connect
  5. (Optional) Enable Automatic Deploys
  6. Click Deploy Branch

API

The app provides two endpoints:

  • GET /0.1/sandbox (for sandbox receipt validation)
  • GET /0.1/production (for production receipt validation)
Parameter Required Description
receipt Yes Base 64 encoded receipt string.
secret No Only used for receipts that contain auto-renewable subscriptions. Your app’s shared secret (a hexadecimal string).
exclude No Only used for iOS7 style app receipts that contain auto-renewable or non-renewing subscriptions. If value is true, response includes only the latest renewal transaction for any subscriptions.

In App Usage

struct Receipt: Decodable {
    var receipt: [String:String]
    var status: Int
}

func obfuscatedValidationMethod() {
    let receiptURL = Bundle.main.appStoreReceiptURL
    let receiptData = NSData(contentsOf: receiptURL!)
    let base64Receipt = receiptData?.base64EncodedString(options: .endLineWithLineFeed)
    let queryItems = [URLQueryItem(name: "receipt", value: base64Receipt)]
    var valUrl = URLComponents(string: "<# https://appName.herokuapp.com #>/0.1/sandbox")
    valUrl?.queryItems = queryItems
    let request = URLRequest(url: valUrl!.url!)

    let session = URLSession.shared
    let task = session.dataTask(with: request) { (data, response, error) in
        guard let responseData = data else {
            return
        }
        let decoder = JSONDecoder()
        do {
            let decodedReceipt = try decoder.decode(Receipt.self, from: responseData)
            if decodedReceipt.status == 1 {
                // Do something with invalid receipt.
            }
        } catch {
            // Handle error.
        }
    }

    task.resume()
}

itunes-validation's People

Contributors

stuartbreckenridge avatar

Watchers

James Cloos avatar Umar Haroon avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.