gpt4 book ai didi

javascript - 如何使用通过 AJAX 发送到 php 的结帐 token 创建 Stripe 收费

转载 作者:可可西里 更新时间:2023-10-31 22:40:01 27 4
gpt4 key购买 nike

我正在尝试通过自定义按钮使用 Stripe 的新结帐功能,通过 AJAX POST 将 token 发送到 php 文件,然后该文件将执行收费。不幸的是,我在从 POST 变量中检索 token 时遇到了一些问题。我希望这里有人可以告诉我我过于复杂的地方,以及是否有更简单的方法来做到这一点。

在客户端,我有 5 个带有不同可能“捐赠”的按钮。到目前为止,这是为此编写的 js(不包括 html):

$(function() {

var donationAmt = '';
var handler = StripeCheckout.configure({
key: 'pk_test_3plF76arhkygGMgwCEerThpa',
image: '/square-image.png',
token: function(token, args) {
// Use the token to create the charge with a server-side script.
// You can access the token ID with `token.id`
console.log(token)
var chargeData = {
donationAmt: donationAmt,
token: token
}
$.ajax({
url: '/link/to/php/stripeDonate.php',
type: 'post',
data: {chargeData: chargeData},
success: function(data) {
if (data == 'success') {
console.log("Card successfully charged!")
}
else {
console.log("Success Error!")
}

},
error: function(data) {
console.log("Ajax Error!");
console.log(data);
}
}); // end ajax call
}
});

$('.donate-button').bind('click', function(e) {
donationAmt = $(this).html().substring(1) + '00';
donationAmt = parseInt(donationAmt); // Grabs the donation amount in the html of the button and store it in a variable
// Open Checkout with further options
handler.open({
name: 'Company Name',
description: 'A donation',
amount: donationAmt
});
e.preventDefault();
});
});

这是我正在处理 AJAX POST 调用的 php:

<?php

require_once('Stripe.php');

// Set your secret key: remember to change this to your live secret key in production
// See your keys here https://manage.stripe.com/account
Stripe::setApiKey("sk_test_APIKEYREDACTED");

// Get the credit card details submitted by the form
$token = json_decode($_POST['chargeData']);
$tokenid = $token['id'];

// Create the charge on Stripe's servers - this will charge the user's card
try {
$charge = Stripe_Charge::create(array(
"amount" => 2000, // amount in cents, again
"currency" => "usd",
"card" => $tokenid,
"description" => "payinguser@example.com")
);
echo 'success';
} catch(Stripe_CardError $e) {
// The card has been declined
echo $tokenid;
}

?>

如 php 错误日志中所述,此代码的直接结果是无法“读取” token 的 POST 变量。 token 创建正常(我看到它登录在控制台上)但是当我通过 AJAX 发送它时它消失了。

每个人都说 Stripe 非常容易实现,所以我真的觉得我在这里遗漏了一些东西。有人能阐明一下吗?

谢谢!

最佳答案

因此,在小睡了 10 个小时并且头脑更加清醒之后,我决定以一种稍微不同的方式来解决这个问题。这是为遇到与我相同的问题的任何其他人准备的,希望能像 stripe/ajax/php 教程一样工作得很好。原来我一直在想 POST 数据都是错误的。即使使用 AJAX,您也需要键值对来发送任何类型的 POST 数据。我为此重新编码了我的 js 的这一部分:

  var handler = StripeCheckout.configure({
key: 'PUBLISHABLEKEY',
image: '/square-image.png',
token: function(token, args) {
// Use the token to create the charge with a server-side script.
// You can access the token ID with `token.id`
console.log(token)
$.ajax({
url: 'link/to/php/stripeDonate.php',
type: 'post',
data: {tokenid: token.id, email: token.email, donationAmt: donationAmt},
success: function(data) {
if (data == 'success') {
console.log("Card successfully charged!");
}
else {
console.log("Success Error!");
}

},
error: function(data) {
console.log("Ajax Error!");
console.log(data);
}
}); // end ajax call
}
});

请注意,一个主要的变化是 ajax 方法的数据属性。记录 token 对象的控制台显示了整个 JSON token 对象,您可以使用它来提取 ID(您的服务器需要发送到 stripe 以收取费用的内容)以及电子邮件(用于您的日志记录目的)。由于我的捐赠金额是可变的,因此我也将其作为第三个 key 。

现在在你的 php 中,为了获取这些 POST 变量并将它们放入 php 变量中,你可以使用它们各自的键来获取它们:

$tokenid = $_POST['tokenid'];
$donation = $_POST['donationAmt'];
$email = $_POST['email'];

然后其他一切都应该是不言自明的(遵循与 stripe php 教程几乎完全相同的示例)。

无论如何,希望这对那里的人有所帮助。祝你好运!

关于javascript - 如何使用通过 AJAX 发送到 php 的结帐 token 创建 Stripe 收费,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22445078/

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