その他の支払い方法公開プレビュー
Terminal のスマートリーダーにQR コードを表示して、サポートされている支払い方法を受け付けます。
Terminal のスマートリーダーは、カード以外にも支払い方法の取引固有の QR コードを表示できます。顧客はこのコードをスキャンして、モバイルデバイスで購入を完了できます。
The flow below shows a payment that supports both card and non-card payment methods. Alternatively, if you want to support multiple non-card payment methods without accepting cards, the reader bypasses the tap or insert prompt and instead shows the menu of non-card payment method options. If you want to support a single non-card payment method, the reader loads the QR code directly.

支払い方法の画面を収集する

決済手段の選択画面

読み込み画面

QR コードのスキャン画面

承認済みの画面
サポートされている支払い方法: WeChat Pay、Affirm
サポート対象のリーダー: Stripe Reader S700、BBPOS WisePOS E
注
Connect アカウントには、各決済手段の取引を実行するための必須ケイパビリティ が必要です。Connect と Affirm および WeChat Pay との互換性について、詳しくはこちらをご覧ください。
Stripe Terminal でカード以外の決済手段をテストするには、物理リーダーを使用します。シミュレートされたリーダーはサポートされていません。
All transactions must be made with a functional network connection, i.e. not while offline.
Create a PaymentIntent
To accept non-card payment methods through the QR code interface, create a PaymentIntent and include your preferred payment method types in the payment_
parameter.
- To present your customer all payment method options in the checkout flow, combine
card_
with non-card payment method types (present affirm
,wechat_
). We recommend enabling this if you operate in a heavily offline environment because only cards are supported in offline mode.pay - If you don’t want to accept cards, support only non-card payment method types (
affirm
,wechat_
).pay - If you know which payment method you want to direct your customer to checkout to, select a single payment method type.
注
To process payments supporting both card_
and non-card payment_
, the reader application must be at least 2.
. To process payments supporting only non-card payment_
, the reader application must be at least 2.
.
Capture type
Many payment methods don’t support manual capture. Create your PaymentIntent with the capture_
parameter automatic
to support the broadest set of payment methods. To support manual capture for card payments while also accepting payment methods that require automatic capture, set capture_
on the nested payment_
attribute to manual
.
Handle the payment
Unlike card payments, processing QR code payments occurs asynchronously. When processing a PaymentIntent with a QR code payment method, Stripe generates a QR code unique to that payment. After processing the payment, the reader displays the QR code for the customer to scan with their mobile device. Shortly after the customer completes the payment on their device, the reader updates to reflect the completed payment.
注
The time it takes for the reader to display the result of the payment might differ depending on the payment method used. The reader usually updates after a few seconds.
QR code payments support both processing the payment immediately and the two-step collect-and-confirm flow.
顧客体験
After you process the PaymentIntent, the customer scans a QR code rendered on the reader screen. Depending on the payment method, the customer might quickly finalize the payment in their mobile application (most digital wallets), or complete a more extended process of evaluating financing offers (BNPL payment methods). Below are demonstrations of the payment flow for supported payment methods:
テスト
In a sandbox, you can scan the QR code using a regular QR code scanning application on your mobile phone. The QR code payload contains a URL that takes you to one of these test payment pages:
Affirm-hosted sandbox page: If your account is onboarded with Affirm, the QR code URL takes you to an Affirm-hosted sandbox page where you can complete the payment process. When you’re redirected to the Affirm sandbox, you might receive a prompt to enter the last four digits of your SSN. Affirm recommends using either
0000
or5678
for testing purposes.Stripe-hosted test payment page: If your account isn’t onboarded with Affirm, you’ll be directed to a Stripe-hosted test payment page where you can choose to authorize or decline the test payment.
注
The present_payment_method endpoint doesn’t support specifying QR code payment method types.