Skip to content

rromanchuk/stripe-ios-old

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

17 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

This SDK allows you to charge credit cards on an iOS 5 device using the Stripe API.

Usage is a simple asynchronous call:

#import "Stripe.h"

StripeConnection *stripe = [StripeConnection connectionWithPublishableKey:@"pk_dl4LcpeAxUEPHN3FxzuAQQmhCGmx5"];

StripeCard *card =  [[StripeCard alloc] init];
card.number =       @"4111111111111111";
card.name =         @"Bob Dylan";
card.securityCode = @"010";
card.expiryMonth =  [NSNumber numberWithInteger:2];
card.expiryYear =   [NSNumber numberWithInteger:2014];

[stripe performRequestWithCard:card 
                 amountInCents:[NSNumber numberWithInteger:200] 
                       success:^(StripeResponse *token) 
     {
         /* handle success */
     }
                         error:^(NSError *error) 
     {
         /* handle failure */
     }];

Please build the "example" target for an example of it in action.

About

Charge credit cards on iOS 5 using Stripe

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Objective-C 100.0%