conekta / conekta-ios

IOS SDK for Tokenization in Conekta
MIT License
4 stars 4 forks source link

alt tag

Conekta iOS v 1.1.0

Wrapper to connect with https://api.conekta.io.

Conekta iOS SDK allow you create token with card details on iOS apps, by preventing sensitive card data from hitting your server(More information, read PCI compliance).

IMPORTANT: If you want to use our SDK with swift, please download the branch named master.

Install

Via git:

$ git clone git@github.com:conekta/conekta-ios.git

Configuration and Setup

General setup

For swift projects, when you add objective c files, it will ask you to create a Bridging file, include on this file the next content:

#import "Conekta.h"

App Transport Security

For development purposes, set NSAppTransportSecurity to true and for production, set it to false or remove it.

Usage

Objective C

#import "ViewController.h"
#import "Conekta.h"

@interface ViewController ()

@end

@implementation ViewController

- (void)viewDidLoad {
  Conekta *conekta = [[Conekta alloc] init];

  [conekta setDelegate: self];

  [conekta setPublicKey:@"key_KJysdbf6PotS2ut2"];

  [conekta collectDevice];

  Card *card = [conekta.Card initWithNumber: @"4242424242424242" name: @"Julian Ceballos" cvc: @"123" expMonth: @"10" expYear: @"2018"];

  Token *token = [conekta.Token initWithCard:card];

  [token createWithSuccess: ^(NSDictionary *data) {
  NSLog(@"%@", data);
  } andError: ^(NSError *error) {
  NSLog(@"%@", error);
  }];

  [super viewDidLoad];
}

- (void)didReceiveMemoryWarning {
  [super didReceiveMemoryWarning];
}

@end

Swift

import UIKit

class ViewController: UIViewController {

  override func viewDidLoad() {
    let conekta = Conekta()

    conekta.delegate = self

    conekta.publicKey = "key_KJysdbf6PotS2ut2"

    conekta.collectDevice()

    let card = conekta.Card()

    card.setNumber("4242424242424242", name: "Julian Ceballos", cvc: "123", expMonth: "10", expYear: "2018")

    let token = conekta.Token()

    token.card = card

    token.createWithSuccess({ (data) -> Void in
      print(data)
    }, andError: { (error) -> Void in
      print(error)
    })

    super.viewDidLoad()
  }

  override func didReceiveMemoryWarning() {
    super.didReceiveMemoryWarning()
    // Dispose of any resources that can be recreated.
  }

}

Contribute

Clone repo

$ git clone https://github.com/conekta/conekta-ios
$ cd conekta-ios

Send pull requests

We love pull requests, send them from your fork to branch dev into conekta/conekta-ios

Attribution

Thanks to Santiago Zavala for helping us to create Conekta iOS SDK Swift first version.

License

Developed by Conekta. Available with MIT License.

We are hiring

If you are a comfortable working with a range of backend languages (Java, Python, Ruby, PHP, etc) and frameworks, you have solid foundation in data structures, algorithms and software design with strong analytical and debugging skills. Send your CV, github to quieroser@conekta.io