TE
科技回声
首页24小时热榜最新最佳问答展示工作
GitHubTwitter
首页

科技回声

基于 Next.js 构建的科技新闻平台,提供全球科技新闻和讨论内容。

GitHubTwitter

首页

首页最新最佳问答展示工作

资源链接

HackerNews API原版 HackerNewsNext.js

© 2025 科技回声. 版权所有。

Ask HN: Why doesn't Stripe allow you to get BIN numbers?

1 点作者 caydenm大约 2 年前
BIN numbers (first 6 digits of a credit card number) are used for everything from fraud prevention to showing a user which bank their payment card was from.<p>Seemingly all other payment processors give BIN information as part of their webhooks and APIs, but Stripe does not.<p>Is there a reason for this? Different interpretation of PCI compliance?

1 comment

smca大约 2 年前
It&#x27;s still best practice to minimize the amount of card data shared. You can accomplish most of what you&#x27;re looking to do using a combination of `card.brand`, `card.last4`, and expiry dates. &quot;Visa ending in 4242, expires 09&#x2F;24.&quot;<p>You can also write much more robust rules using Radar: <a href="https:&#x2F;&#x2F;stripe.com&#x2F;docs&#x2F;radar&#x2F;rules" rel="nofollow">https:&#x2F;&#x2F;stripe.com&#x2F;docs&#x2F;radar&#x2F;rules</a>. Something like: `Review if :is_disposable_email: and :card_funding: = &#x27;prepaid&#x27;`
评论 #36145828 未加载