admin管理员组文章数量:1122846
In the app that I'm working, it use the Stripe iframe to display the stripe form:
const stripe = Stripe("public_key");
// Set up Stripe.js and Elements to use in checkout form
const elements = stripe.elements(options);
// Create and mount the Payment Element
const paymentElement = elements.create('payment', params);
paymentElement.mount('#payment-element');
const form = document.getElementById('payment-form');
In the other hand, in our app we have a list of blocked Bins.
So, for each client that wants to make a payment, I have to get the first 6 numbers of the card and the check if that number is in our list of blocked bins.
I understand that it's not safe so for that probably I can't get the number, and I didn't find anything in stripe api doc regarding to this.
Does anyone know if it's possible to do this?
本文标签: phpCheck blocked bin in stripeStack Overflow
版权声明:本文标题:php - Check blocked bin in stripe - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1736306213a1932874.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论