# 检查您的集成是否符合强客户认证 (SCA)

要检查 Stripe 集成以确保符合强客户认证 (SCA) 和 PSD2 法规，请执行以下操作：
* 在[管理平台](https://dashboard.stripe.com)中，具体而言是在[支付](https://dashboard.stripe.com/payments)页面上，检查最近的对象，以验证此集成使用的是 `PaymentIntents` 还是新的 [Stripe Checkout](https://stripe.com/checkout)。
* 检查 Stripe 相关代码，以确保 `PaymentIntents` 或 [Checkout](https://stripe.com/checkout) 一切正常。
* 欲了解支付模式，请查看日志页面。使用 `/v1/charges` 端点创建的收款尚不支持 SCA。
## 附加信息
* 如果您的某些代码仍在 `/v1/tokens` 和 `/v1/charges` 上运行，则表明您可能尚不满足 SCA 要求，并且应更新该代码以使用 `PaymentIntents` 或 Checkout。
* 令牌化和安全地收集支付信息属于 [PCI 合规性](https://stripe.com/en-at/guides/pci-compliance)范畴，而不是 SCA 关注的重点。
* [使用 Payment Intents API 进行一次性付款](https://stripe.com/docs/payments/payment-intents)（Stripe 文档）
* [创建 Payment Intents](https://stripe.com/docs/payments/payment-intents/creating-payment-intents)（Stripe 文档）
* [强客户认证 (SCA) 相关集成更改的责任](/questions/responsibility-for-strong-customer-authentication-sca-related-integration-changes)