gpt4 book ai didi

php - Stripe 更新客户默认卡 (PHP)

转载 作者:IT王子 更新时间:2023-10-29 00:10:35 25 4
gpt4 key购买 nike

我想为使用 Stripe 的客户更新默认卡。

update customer API docs不清楚为 card 参数提供什么。

在 PHP 中,我试过根据 retrieve card 方法设置 card,如下所示:

$customer->card=$card['id']

但这似乎不起作用。也不会像这样使用 token :

$customer->source=$_POST['stripe_token]

所以我有点不知所措。想法?

最佳答案

我能够在 Stripe 对 IRC #stripe channel 的支持下回答我自己的问题:

card 参数由 default_source 指定,如下所示:

Stripe::setApiKey($stripe_private_key);
$customer = Stripe_Customer::retrieve($stripe_cus_id);
$customer->default_source=$card['id'];
$customer->save();

关于php - Stripe 更新客户默认卡 (PHP),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29753923/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com