使用 v3 js 条纹支付宝入职 API
Stripe Alipay onboarding with v3 js API
尝试用Stripe向支付宝充值,却一直报这个错误信息。我可以看到条纹面板中的支付宝选项是绿色的。有没有人有类似的经验和解决办法?
<script src="https://js.stripe.com/v3/"></script>
// Create a Stripe client
var stripe = Stripe('<?php echo $stripe['publishable_key'];?>');
stripe.createSource({
type: 'alipay',
amount: 1099,
currency: 'usd',
redirect: {
return_url: 'var_dump.php',
},
}).then(function(result) {
window.location=result.source.redirect.url;
});
</script>
来自 api.stripe 的控制台错误。com/v1
{
"error": {
"type": "invalid_request_error",
"message": "Your Alipay onboarding is still pending review, so you can only create testmode Alipay sources. Please try again later or contact support@stripe.com with any questions.",
"code": "pbl_pending"
}
}
出现此错误的一个常见原因是,如果您有多个 Stripe 帐户,并且您使用的 API 密钥与获准接受支付宝付款的帐户不同。
如果您的 API 密钥用于正确的帐户,那么您需要写信给支持人员以解决此问题。
尝试用Stripe向支付宝充值,却一直报这个错误信息。我可以看到条纹面板中的支付宝选项是绿色的。有没有人有类似的经验和解决办法?
<script src="https://js.stripe.com/v3/"></script>
// Create a Stripe client
var stripe = Stripe('<?php echo $stripe['publishable_key'];?>');
stripe.createSource({
type: 'alipay',
amount: 1099,
currency: 'usd',
redirect: {
return_url: 'var_dump.php',
},
}).then(function(result) {
window.location=result.source.redirect.url;
});
</script>
来自 api.stripe 的控制台错误。com/v1
{
"error": {
"type": "invalid_request_error",
"message": "Your Alipay onboarding is still pending review, so you can only create testmode Alipay sources. Please try again later or contact support@stripe.com with any questions.",
"code": "pbl_pending"
}
}
出现此错误的一个常见原因是,如果您有多个 Stripe 帐户,并且您使用的 API 密钥与获准接受支付宝付款的帐户不同。
如果您的 API 密钥用于正确的帐户,那么您需要写信给支持人员以解决此问题。