#id10t
1 messages · Page 1 of 1 (latest)
yes, they were showing before.
nothing changed codewise.
also, nothing changed settings wise
Can you share the payment intent id?
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 ),
) );
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
interesting...
it seemed to have worked yesterday but i may be wrong. i'll test it out.
Yeah try without that param
Cool, yeah
thanks a lot!