条带支付中没有此类令牌错误

Posted

技术标签:

【中文标题】条带支付中没有此类令牌错误【英文标题】:No such token error is coming in stripe payment 【发布时间】:2017-04-23 11:31:55 【问题描述】:

我正在 cakephp 项目中实现 stripe 支付网关

下面是我试过的代码:

  require_once('stripelib/vendor/autoload.php');
        \Stripe\Stripe::setApiKey('sk_test_xxxxxxxxxxxxxxxxxxxxxx');
        try 
            $charge = \Stripe\Charge::create(array(
                        "amount" => $data['total'] * 100,
                        "currency" => "usd",
                        "card" => $token,
                        "description" => "Charge for Facebook Login code."
            ));
            //  pr($charge);exit;
        

这里的问题是商家没有收到金额并且我收到以下错误

"error":"没有这样的标记: card_xxxxxxxxxxxxxxxxxxxxxxxx(invalid_request_error)"

有什么建议吗? 谢谢。

【问题讨论】:

【参考方案1】:

您正在尝试使用卡 ID ("card_...") 而不是令牌 ID ("tok_...") 来创建费用。

有关如何创建费用的更多信息,请参阅此 *** 答案:https://***.com/a/34416413/5307473

【讨论】:

以上是关于条带支付中没有此类令牌错误的主要内容,如果未能解决你的问题,请参考以下文章

如何在条带支付网关中生成令牌

条带错误 400 - 不能多次使用条带令牌

如何修复节点中的“解析错误:意外的令牌 =>”?

未捕获的类型错误:无法读取 null 的属性“提交”以进行条带支付

“未捕获的类型错误:在 angularJS/NodeJS 中使用条带支付方法 Stripe.charges.create() 时无法读取未定义的属性‘创建’”

使用节点js进行条带支付时出错