提供选择客户自己添加的支付卡(已有)。使用Stripe.Net 1.1.17.0。由于客户端限制,无法升级版本。有没有办法获取所提供的客户Id的卡列表?
发布于 2016-02-25 14:06:39
你可以得到所有的卡片列表var cardService = new StripeCardService(); IEnumerable<StripeCard> response = cardService.List(*StripeCustomerID*);
https://stackoverflow.com/questions/29510335
复制相似问题