#id10t

1 messages · Page 1 of 1 (latest)

sinful steepleBOT
orchid lion
#

Were they showing before?

#

(ie. did something change?)

dull quartz
#

yes, they were showing before.

#

nothing changed codewise.

#

also, nothing changed settings wise

orchid lion
#

Can you share the payment intent id?

dull quartz
#

pi_3MWLCVB6QSjHrv2s0LT7C2xc

#

created this way

#
$intent = \Stripe\Stripe\PaymentIntent::create( array(
    'amount' => $amount * 100,
    'currency' => $currency,
    'setup_future_usage' => 'on_session',
    'automatic_payment_methods' => array( 'enabled' => true ),
) );

orchid lion
#

Ah it's most likely all the other enabled payment methods don't support setup_future_usage

#

Not many do

#

Yep seeing that's the case in the logs

#

That's why you're only getting card as a valid option

dull quartz
#

interesting...

#

it seemed to have worked yesterday but i may be wrong. i'll test it out.

orchid lion
#

Yeah try without that param

dull quartz
#

ha! you are right.

#

that worked.

orchid lion
#

Cool, yeah

dull quartz
#

thanks a lot!