我们不会使用CVV来处理交易,因为我们处理定期付款并且存储CVV是针对PCI合规性的。因此,我们希望从屏幕上删除此字段,以免误导用户。我们如何自定义屏幕以不需要CVV?
我们通过Android使用以下方法做到了: scanIntent.putExtra(CardIOActivity.EXTRA_REQUIRE_CVV,false);
答案 0 :(得分:2)
我找到了解决方案;在CardIOPaymentViewController上设置collectCVV属性就可以了。
CardIOPaymentViewController *scanViewController = [[CardIOPaymentViewController alloc] initWithPaymentDelegate:self];
scanViewController.appToken = @"bdb50937d5a7473a8c337c33a5e407ef";
scanViewController.collectCVV = NO;