1
我是Braintree的新手,我想擁有自己的自定義用戶界面來存儲信用卡。我正在使用下面的代碼來標記信用卡。Braintree Android - 使用Cardbuilder在SAQ A上添加信用卡符合PCI級別
CardBuilder cardBuilder = new CardBuilder()
.cardNumber(mCardForm.getCardNumber())
.expirationMonth(mCardForm.getExpirationMonth())
.expirationYear(mCardForm.getExpirationYear());
Card.tokenize(mBraintreeFragment, cardBuilder);
我已經有PCI SAQ A合規性級別。考慮到我的PCI水平,我的問題是否安全地執行此操作?