我有一个应用程序,它使用ajax调用条带SDK库中的函数。
第一次向客户收取费用罚款没有任何问题。
Chargeide Code for Charge Customer:
<?php
require_once 'stripe/init.php';
// See your keys here https://dashboard.stripe.com/account/apikeys
\Stripe\Stripe::setApiKey("xxxxxxxxxxxxxxxxxxxx");
// Get the credit card details submitted by the form
$token = $_POST["token"];
// Create the charge on Stripe's servers - this will charge the user's card
try {
$charge = \Stripe\Charge::create(array("amount" => 1000, // amount in cents, again
"currency" => "usd", "source" => $token, "description" => "Example charge"));
echo json_encode(array("msg" => "success"));
exit ;
} catch(\Stripe\Error\Card $e) {
echo json_encode(array("msg" => $e -> getMessage()));
exit ;
}
创建新客户的第二个要求会产生 500内部服务器错误。
创建客户的服务器代码:
<?php
require_once 'stripe/init.php';
// See your keys here https://dashboard.stripe.com/account/apikeys
\Stripe\Stripe::setApiKey("xxxxxxxxxxxxxxxxx");
// Get the credit card details submitted by the form
$token = $_POST["token"];
// Create the charge on Stripe's servers - this will charge the user's card
try {
// add customer
$email = "example@yahoo.com";
\Stripe\Customer::create(array("description" => "Customer for " . $email, "source" => $token // obtained with Stripe.js
));
echo json_encode(array("msg" => "success"));
exit ;
} catch(\Stripe\Error\Card $e) {
echo json_encode(array("msg" => $e -> getMessage()));
exit ;
}
以下是我的尝试:
我试图单独运行ajax调用(逐个)并且它们都工作正常,但是当我尝试按顺序进行多个ajax调用(一个接着一个)时,第二个ajax调用总是失败。
我也尝试交换这些电话的顺序,即我试图先调用添加客户然后再拨打第二个电话,在这种情况下客户成功添加,但不管订单是什么,第二个电话都会总是失败并给出500错误。
因此我认为我的服务器端代码对于这两个函数都是正确的&#34; Charge :: create&#34;和&#34;客户::创建&#34;但是我在第一次ajax调用之后需要重置一些东西,所以第二个ajax调用也会成功。
客户代码
jQuery.ajax({
url : 'sp/stripeProcess.php',
method : "POST",
data : {
token : token
},
dataType : 'json',
cache : false,
success : function(response) {
console.log(response);
if (response.msg == "success") {
jQuery.ajax({
url : 'sp/createCustomer.php',
method : "POST",
data : {
token : token
},
dataType : 'json',
cache : false,
error : function(jqxhr, textstatus, errorThrown) {
console.log(jqxhr.status);
},
success : function(response) {
console.log(response);
if (response.msg == "success") {
console.log('customer added');
} else {
jQuery(".payment-errors").text(response.msg);
}
}
});
} else {
jQuery(".payment-errors").text(response.msg);
}
}
});
答案 0 :(得分:0)
好的,问题是根据条带API,令牌只能使用一次,所以在我的情况下这是解决方案: