尝试使用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"
}
}
答案 0 :(得分:0)
出现此错误的一个常见原因是,如果您有多个Stripe帐户,并且您使用的API密钥不适用于已批准接受支付宝付款的同一帐户。
如果您的API密钥用于正确的帐户,那么您需要写入支持以对其进行排序。