Viewing 3 replies - 1 through 3 (of 3 total)
  • Plugin Author Clayton R

    (@mrclayton)

    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,

    Thread Starter rchannelwp

    (@rchannelwp)

    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!

    Plugin Author Clayton R

    (@mrclayton)

    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,

Viewing 3 replies - 1 through 3 (of 3 total)

The topic ‘paymentIntents API’ is closed to new replies.