How to implement 3d secure authentication in stripe?
问题 //Code Sample <?php session_start(); require_once("F:\wamp64\www\lib\stripe-php-7.27.2\init.php"); \Stripe\Stripe::setApiKey('sk_test_vXXXXXXXXXXXXXlmwqE'); $name = $_SESSION['namex']; $email = $_SESSION['emailx']; $phno = $_SESSION['mobilex']; $purpose = $_SESSION['purposex']; $amount = $_SESSION['amountx']; $txn = $_SESSION['txnn']; $token = $_POST['stripeToken']; $fee = $amount*0.02; $tax = $fee*0.18; $famt = round($amount+$fee+$tax); // payment information $charge = \Stripe\PaymentIntent: