Hi @rchannelwp,
The direct GPay integration uses the Stripe sources API but the Payment Request gateway which has a GPay integration uses the payment intents API.
Kind Regards,
Interesting, thanks for quick reply.
We’re trying to find out if we can force 3d Secure for Google Pay (and alternatively Apple Pay) via Stripe.
It seems that with Payment Intent API’s we might be able to do this…
Thank you!
Hi @rchannelwp,
Yes theoretically this is possible using the filters provided by the plugin.
Example:
add_filter('wc_stripe_payment_intent_args', function($args, $order){
$args['payment_method_options']['card']['request_three_d_secure'] = 'any';
return $args;
}, 10, 2);
This will force 3D secure on all payment methods in which 3D secure is accepted.
Kind Regards,