#sandip5831

1 messages · Page 1 of 1 (latest)

hushed nebulaBOT
analog quest
#

👋 happy to help

#

this seems to be a 3DS issue

#

how are you integrating with Stripe?

mighty oracle
#

Ok let me share the steps

#

Step 1.] I have configure with 3DS

PaymentConfiguration.init(this, stripe_publishable_key!!)
val uiCustomization = PaymentAuthConfig.Stripe3ds2UiCustomization.Builder()
.setLabelCustomization(
PaymentAuthConfig.Stripe3ds2LabelCustomization.Builder()
.setTextFontSize(12)
.build()
)
.build()
PaymentAuthConfig.init(
PaymentAuthConfig.Builder()
.set3ds2Config(
PaymentAuthConfig.Stripe3ds2Config.Builder()
.setTimeout(10)
.setUiCustomization(uiCustomization)
.build()
)
.build()
)

Step 2.] Create EphemeralKey

Step 3.] And then present the PaymentSession.

azure kernel
mighty oracle
#

Yes

azure kernel
#

I'm not able to reproduce the error you are facing.... Did you tried that sample activity ?

hushed nebulaBOT
mighty oracle
#

Why debit card not working in stripe?