wearefml
Stripe文档上有很详细的说明。https://stripe.com/docs/sources/customers
删除用户的信用卡信息
customer_id = '你的用户对应的Stripe Customer Id'
source_id = '你的用户信用卡对应的source_id'
customer = stripe.Customer.retrieve(customer_id)
# 直接掉detach()方法就行
customer.sources.retrieve(source_id).detach()
添加新的信用卡
customer_id = '你的用户对应的Stripe Customer Id'
source_id = '你的用户填完信用卡信息之后提交表单,后端接受到的stripe token'
customer = stripe.Customer.retrieve(customer_id)
customer.sources.create(source=source_id)
应该是不可以更改信用卡信息的,只能添加一张新卡。