gpt4 book ai didi

javascript - 将关联帐户的 Stripe 费用 ID 和帐户 ID 公开给客户端是否安全?

转载 作者:行者123 更新时间:2023-11-30 06:22:17 25 4
gpt4 key购买 nike

我正在对后端进行 ajax 调用,我想知道将 charge idconnected account id 公开给客户端是否安全?

没有浏览器端的任何 secret key 或任何东西。

谢谢!

点击退款按钮后我会调用它:

$.ajax({
type: "POST",
data: {amount: pennies.toFixed(0), charge: chargeId, account: accountId},
url: "/refund",
success: function(data){
//f.e. set to modal
$('#refund_dialog').modal('hide')
$('#refund_dialog').on('hidden.bs.modal', function () {
alert(JSON.stringify(data));
})

},
error: function(err) {
$('#refund_dialog').modal('hide')

$('#refund_dialog').on('hidden.bs.modal', function () {
alert(err.responseText);
})
});

最佳答案

很安全,如果没有 API key ,这些 ID 就没有用。

关于javascript - 将关联帐户的 Stripe 费用 ID 和帐户 ID 公开给客户端是否安全?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52453280/

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