I am new to Braintree and I want to have my own user interface for storing a credit card. I use the following code to credit card tokenization.
CardBuilder cardBuilder = new CardBuilder()
.cardNumber(mCardForm.getCardNumber())
.expirationMonth(mCardForm.getExpirationMonth())
.expirationYear(mCardForm.getExpirationYear());
Card.tokenize(mBraintreeFragment, cardBuilder);
I already have a PCI SAQ A PCI compatibility level. Will my question be safe to perform this operation, given my PCI level?
source
share