我正在使用带有测试密钥的Stripe API。我已将付款表单成功发布到Stripe API端点,但是没有创建任何事件。当我检查条带事件/日志时,我能够在日志选项卡下看到我提交的测试付款的200 - Ok成功消息,但是事件选项卡仍为空。似乎无法弄清楚这一点。我的代码如下。
这是我处理付款的php:
function wpay_stripe_process_payment() {
if(isset($_POST['action']) && $_POST['action'] == 'stripe' && wp_verify_nonce($_POST['stripe_nonce'], 'stripe-nonce')) {
global $stripe_options;
// load the stripe libraries
require_once(STRIPE_BASE_DIR . '/lib/Stripe.php');
// retrieve the token generated by stripe.js
$token = $_POST['stripeToken'];
// check if we are using test mode
if(isset($stripe_options['test_mode']) && $stripe_options['test_mode']) {
$secret_key = $stripe_options['test_secret_key'];
} else {
$secret_key = $stripe_options['live_secret_key'];
}
// attempt to charge the customer's card
try {
Stripe::setApiKey($secret_key);
$charge = Stripe_Charge::create(array(
'amount' => 1000, // $10
'currency' => 'usd',
'card' => $token
)
);
// redirect on successful payment
$redirect = add_query_arg('payment', 'paid', $_POST['redirect']);
} catch (Exception $e) {
// redirect on failed payment
$redirect = add_query_arg('payment', 'failed', $_POST['redirect']);
}
// redirect back to our previous page with the added query variable
wp_redirect($redirect); exit;
}
}
add_action('wpay_stripe_process_payment');
以下是我发送付款信息的js:
Stripe.setPublishableKey(stripe_vars.publishable_key);
function stripeResponseHandler(status, response) {
if (response.error) {
// show errors returned by Stripe
jQuery(".payment-errors").html(response.error.message);
// re-enable the submit button
jQuery('#stripe-submit').attr("disabled", false);
} else {
var form$ = jQuery("#stripe-payment-form");
// token contains id, last4, and card type
var token = response['id'];
// insert the token into the form so it gets submitted to the server
form$.append("<input type='hidden' name='stripeToken' value='" + token + "'/>");
// and submit
form$.get(0).submit();
}
}
jQuery(document).ready(function($) {
$("#stripe-payment-form").submit(function(event) {
// disable the submit button to prevent repeated clicks
$('#stripe-submit').attr("disabled", "disabled");
// send the card details to Stripe
Stripe.createToken({
number: $('.card-number').val(),
cvc: $('.card-cvc').val(),
exp_month: $('.card-expiry-month').val(),
exp_year: $('.card-expiry-year').val()
}, stripeResponseHandler);
// prevent the form from submitting with the default action
return false;
});
});
JSON回复:
{
"id": "tok_1B12dQG6oQhg3oEDNlZLFORy",
"object": "token",
"card": {
"id": "card_1B12dQG6oQhg3oEDIQa4fiCe",
"object": "card",
"address_city": null,
"address_country": null,
"address_line1": null,
"address_line1_check": null,
"address_line2": null,
"address_state": null,
"address_zip": null,
"address_zip_check": null,
"brand": "Visa",
"country": "US",
"cvc_check": "unchecked",
"dynamic_last4": null,
"exp_month": 4,
"exp_year": 2018,
"funding": "credit",
"last4": "4242",
"metadata": {
},
"name": null,
"tokenization_method": null
},
"client_ip": "187.232.128.105",
"created": 1505177536,
"livemode": false,
"type": "card",
"used": false
}
答案 0 :(得分:1)
您的条纹令牌位于response.id
,而不是response['id']
:
// token contains id, last4, and card type
var token = response.id;
响应是一个JSON对象,因此您必须像遍历任何其他js对象一样遍历该对象。
答案 1 :(得分:1)
根据条纹文档的说法,对我来说,您似乎没有为令牌提供正确的密钥:https://stripe.com/docs/charges
此:
$charge = Stripe_Charge::create(array(
'amount' => 1000, // $10
'currency' => 'usd',
'card' => $token // I think the key here needs to be "source"
));
应该是这样的:
$charge = Stripe_Charge::create(array(
'amount' => 1000, // $10
'currency' => 'usd',
'source' => $token
));
对我而言,我正在使用他们提供的Stripe PHP库,而不是:
Stripe_Charge::create(...);
我正在使用:
\Stripe\Charge::create(...);
但实际上我认为问题可能是您在收费时需要使用“来源”而不是“卡”。