gpt4 book ai didi

php - Stripe : No such token. 。测试模式下存在类似对象,但使用实时模式 key 发出此请求

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

在实时模式下使用 Stripe 时出现这个 PHP 错误:

No such token tok_fgfhn.. a similar object exists in test mode, but a live mode key was used to make this request

在 Stripe 测试模式下一切正常,而且我已切换到实时 API key 。

我这样创建一个新客户:

$token  = $_POST['stripeToken'];
$email = $_POST['email'];

$customer = \Stripe\Customer::create(array(
'email' => $email,
'card' => $token
));

//charge for user ads
$charge = \Stripe\Charge::create(array(
'customer' => $customer->id,
'amount' => $amount,
'currency' => 'eur'
));

我已经测试了很多小时,但仍然出现此错误。我该如何解决?

最佳答案

听起来您正在尝试向存在于您的测试帐户中的客户收费,而不是在您的真实帐户中。确保您正在使用您的实时 key 创建新客户并使用他们的 token 来创建费用。

关于php - Stripe : No such token. 。测试模式下存在类似对象,但使用实时模式 key 发出此请求,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28952987/

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