Application functionality calls for saving Credit

2019-07-03 23:51发布

Hi i Need to know if any specific security design exists for saving credit card details of user for future use.Actually iam developing an application in android and its like an app market selling products and i want to implement this functionality ie payment through credit card.

2条回答
男人必须洒脱
2楼-- · 2019-07-04 00:46

DO NOT save user credit card data on a device! There's just no way to make it secure. A device can get lost or stolen. You'll have to implement a secure user login to your server and store the CC data there.

查看更多
甜甜的少女心
3楼-- · 2019-07-04 00:50

If you want to charge a user's credit card at future dates you would use a service like [Authorize.Net's Customer Information Manager (CIM)][3] to create payment profiles for your customers. Basically you're storing credit card information on Authorize.Net's servers and whenever you want to receive a payment from a customer you tell Authorize.Net to charge the amount due to that payment profile.

They even just released SDKs for Andorid and iOS.

查看更多
登录 后发表回答