获取 Stripe 中一笔交易的完整数据

Get complete data of a transaction in Stripe

如何获取Stripe交易的完整信息?

对于我在 Charge::create() 填写的字段,我想获取所有详细信息:number、cvc、exp_month、exp_year 等。

我可以通过这个服务器调用获取金额和id

BalanceTransaction::retrieve($data['transactionID']);

谢谢。

您可以使用

charge:retrive("ch_%yourid");

你给你完整的收费数据,但只给你卡号的后4位。