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.
相关问题
- How can I create this custom Bottom Navigation on
- Bottom Navigation View gets Shrink Down
- How to make that the snackbar action button be sho
- Listening to outgoing sms not working android
- How to create Circular view on android wear?
相关文章
- android开发 怎么把图片放入drawable的文件夹下
- android上如何获取/storage/emulated/下的文件列表
- androidStudio有个箭头不认识
- SQLite不能创建表
- Angular Material Stepper causes mat-formfield to v
- Windows - Android SDK manager not listing any plat
- Warning : HTML 1300 Navigation occured?
- Animate Recycler View grid when number of columns
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.
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.