Braintree Android - Use Cardbuilder to add credit

2019-07-22 15:19发布

I am new to Braintree and I want to have my own custom UI to store Credit card. I am using the following code to tokenize the credit card.

CardBuilder cardBuilder = new CardBuilder()
            .cardNumber(mCardForm.getCardNumber())
            .expirationMonth(mCardForm.getExpirationMonth())
            .expirationYear(mCardForm.getExpirationYear());

    Card.tokenize(mBraintreeFragment, cardBuilder);

I already have PCI SAQ A Compliance level. My question will it be safe carry out this operation considering my PCI level?

1条回答
我只想做你的唯一
2楼-- · 2019-07-22 15:37

Full disclosure: I work at Braintree. If you have any further questions, feel free to contact our support team.

For our mobile clients there is no heightened PCI requirement when integrating using our custom integration versus Drop-in.

查看更多
登录 后发表回答