Personal license


  • Perpetual license (does not expire)
  • Unlimited applications
  • Can distribute binary products only
  • Commercial use allowed
  • No code modifications
  • 6 months support
$24.99 Read License

Developer license


  • Perpetual license (does not expire)
  • Unlimited projects
  • Can distribute code and binary products
  • Commercial use allowed
  • No code modifications
  • 6 months support
$124.99 Read License

14 Day money-back guarantee

Full refund within 14 days of purchase date.

You need to log-in or create an account
  • Create an account
  • Log-in

Please use your real name.

Activation link will be sent to this address.

Minimum 8 characters

Enter your password again

Clicking this button confirms you read and agreed to the terms of use and privacy policy.

  • Released: Nov 15, 2011
    Last Update: Sep 20, 2012
  • Language: Objective-C
    Platform(s): iPhone
  • Category: Security
  • Time / costs savings: 10h / $600 *
(9 ratings)

In-app purchase verification

In-app purchase verification
Developed by Max Bäumle, Released Nov 15, 2011

Hosted receipt verification solution to in-app purchase bypass with tools like 'iAP Cracker'

Objective-C

This component provides protection against tools that bypass in-app purchases and unlock premium content for free, such as the most popular 'iAP Cracker'. Protection is managed via a hosted receipt verification service hosted on our servers. It comes with both proven security and reliability against cracking tools and is meant to be as easy as possible to integrate for the developer.

'In-app purchase verification' is for those who don't maintain a server and want to avoid managing purchase verification themselves – it's a huge time saver: Implementing it is as easy as inserting a few extra lines of code (see below). From then on, the server will do its magic and it'll verify each receipt with an Apple server. It'll also provide you with a count of purchases made.

Back to top

Developer license

From now on, the developer license package comes with the same PHP script we use so you can self-host 'In-app purchase verification' if you want to.

Back to top

Code sample

#import "iAPVerification.h"

- (void)paymentQueue:(SKPaymentQueue *)queue updatedTransactions:(NSArray *)transactions {
    for (SKPaymentTransaction *transaction in transactions) {
        [iAPVerification verifyPurchase:transaction isSandbox:YES delegate:self];
    }
}

- (void)purchaseVerified:(NSDictionary *)dictionary paymentTransaction:(SKPaymentTransaction *)paymentTransaction {
    NSString *productId = [dictionary objectForKey:@"product_id"];

    if ([productId isEqualToString:@"com.powerflightapp.iap.1"]) {
        // Provide content
    }

    [[SKPaymentQueue defaultQueue] finishTransaction:paymentTransaction];
}
View all 8 reviews »

User Reviews

  • Yegor Kurbachev 7 months ago
    AMAZING! Knowing NOTHING about In-App Purchases verification, from finding the component to uploading the fixed app to AppStore in just an hour!

    THANKS!!!
    Flag
    Was this helpful? Yes No
  • Vincent Bellet 9 months ago
    one of the best component of binpress. period.
    Flag
    Was this helpful? Yes No
  • diego squillaci 12 months ago
    nice
    Flag
    Was this helpful? Yes No
Read all 41 comments »

Questions & Comments


Or enter your name and Email
  • runtowin@naver.com 3 weeks ago
    Is it still operating? I'm interested in using this solution...
    Thanks... in advance..
  • John Romano 8 months ago
    I have storybook license, want to have in-app purchase to unlock book after first reading. Will this in-app purchase code be turnkey to allow me to do that?
  • Nesim License holderPersonal license 9 months ago
    Hello,

    I don't know how to use it? Sample code is OK but how will I list the products to show user and make a button for buy an item?

    //Edited

    Sorry, totally my fault! I've misunderstand. This component is only for verification. I thought it's whole stuffs about the in-app purchase stuffs. Sorry.

You must be logged-in to vote. Log-in to your account or register now.