Braintree Android - Use Cardbuilder to add credit card at SAQ A PCI Compliance Level

試著忘記壹切 提交于 2019-12-11 10:17:57

问题


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:


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.



来源:https://stackoverflow.com/questions/35760552/braintree-android-use-cardbuilder-to-add-credit-card-at-saq-a-pci-compliance-l

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!