Warning: file_get_contents(/data/phpspider/zhask/data//catemap/9/javascript/378.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
Javascript 条带-支付意图(3d安全问题)_Javascript_Php_Stripe Payments - Fatal编程技术网

Javascript 条带-支付意图(3d安全问题)

Javascript 条带-支付意图(3d安全问题),javascript,php,stripe-payments,Javascript,Php,Stripe Payments,我确实在我的网站上实现了支付意图,现在可以很好地使用此测试卡4242,但是对于其他需要3d安全方法的卡,我接受此错误“无效支付意图状态” 我使用的代码与flow上的标准代码相同,其中包含一些管理mysql、电子邮件、元数据等的代码 我哪里出错了?提前谢谢 连接到index.php的简化js代码 var stripe = Stripe('pk_test_xxx'); var elements = stripe.elements(); var cardElement = elements.creat

我确实在我的网站上实现了支付意图,现在可以很好地使用此测试卡
4242
,但是对于其他需要3d安全方法的卡,我接受此错误
“无效支付意图状态”

我使用的代码与flow上的标准代码相同,其中包含一些管理mysql、电子邮件、元数据等的代码

我哪里出错了?提前谢谢

连接到index.php的简化js代码

var stripe = Stripe('pk_test_xxx');
var elements = stripe.elements();
var cardElement = elements.create('card', {style: style});

cardElement.mount('#card-element');

var cardholderName = document.getElementById('cardholder-name');
var cardButton = document.getElementById('card-button');
var amount = $('#amount').val();

cardButton.addEventListener('click', function(ev) {
    ev.preventDefault();
    stripe.createPaymentMethod('card', cardElement, {
        billing_details: {name: cardholderName.value}
    }).then(function(result) {

    if (result.error) {


    } else {
      $body.addClass("loading");
      fetch('https://test.com/server.php', {
        method: 'POST',
        headers: { 'Content-Type': 'application/json' },
        body: JSON.stringify({ 
            payment_method_id: result.paymentMethod.id, 
            amount: amount
            })
      }).then(function(result) {


        // Handle server response (see Step 3)
        result.json().then(function(json) {
          handleServerResponse(json);
        })
      });
    }
  });
});

function handleServerResponse(response) {
  if (response.error) {

  } else if (response.requires_action) {

    stripe.handleCardAction(
      response.payment_intent_client_secret
    ).then(function(result) {
      if (result.error) {

      } else {
        // The card action has been handled
        // The PaymentIntent can be confirmed again on the server
        fetch('https://test.com/server.php', {
          method: 'POST',
          headers: { 'Content-Type': 'application/json' },
          body: JSON.stringify({ 
            payment_method_id: result.paymentMethod.id, 
             amount: amount


          })
        }).then(function(confirmResult) {
            console.log(confirmResult);
          return confirmResult.json();
        }).then(handleServerResponse);
      }
    });
  } else {


  }
}
server.php上的简化代码

<?php

  # vendor using composer
  require_once('stripe6400/init.php');

  \Stripe\Stripe::setApiKey('sk_test_xxx');

  header('Content-Type: application/json');

  # retrieve json from POST body
  $json_str = file_get_contents('php://input');
  $json_obj = json_decode($json_str);

    $paymentid = $json_obj->payment_method_id;
    $amount = $json_obj->amount;

  $intent = null;
  try {
    if (isset($json_obj->payment_method_id)) {
      # Create the PaymentIntent
      $intent = \Stripe\PaymentIntent::create([
        'payment_method' => $json_obj->payment_method_id,
        'amount' => $json_obj->amount,
        'payment_method_types' => ["card"],
        'currency' => 'gbp',
        'confirmation_method' => 'manual',
        'confirm' => true,
      ]);
    }
    if (isset($json_obj->payment_intent_id)) {
      $intent = \Stripe\PaymentIntent::retrieve(
        $json_obj->payment_intent_id
      );
      $intent->confirm();
    }
    generatePaymentResponse($intent);
  } catch (\Stripe\Error\Base $e) {
    # Display error on client
    echo json_encode([
      'error' => $e->getMessage()
    ]);
  }

  function generatePaymentResponse($intent) {
    if ($intent->status == 'requires_action' &&
        $intent->next_action->type == 'use_stripe_sdk') {

      echo json_encode([
        'requires_action' => true,
        'payment_intent_client_secret' => $intent->client_secret
      ]);
    } else if ($intent->status == 'succeeded') {


Stripe\Customer::create([
    "email" => $email,
    "name" => $customer_name,
    "source" => "tok_visa" // obtained with Stripe.js
]);


      echo json_encode([
        "success" => true
      ]);



    } else {
      # Invalid status
      http_response_code(500);
      echo json_encode(['error' => 'Invalid PaymentIntent status']);
    }
  }
?>

看起来您可能遇到了与我刚才相同的错误。来自条带的响应状态为
需要源操作
而不是
需要操作
,因此您的if语句处于
无效PaymentIntent状态

//更改此设置
//$intent->status=='需要\u操作'
//对此
$intent->status=='requires\u source\u action'
在我的例子中,我正在检查两者,以便在我更新stripe SDK时,我的代码已准备就绪


(代码中的第33行)

同样在Customer::create your source attribute“tok_visa”必须是真实的令牌。id来自javascript中的create token

您可以在使用3d安全卡时从服务器附加ajax响应吗?{“错误”:“PaymentIntent状态无效”}我不再收到错误,但付款未注册,请给我一点时间看看可能会出现什么问题。我已将“requires_action”更新为“requires_source_action”,并显示了off we go 3d secure,但下一个问题来自函数handleServerResponse(response)>>TypeError:result.paymentMethod未定义它看起来像是您应该在何时发送
付款\u意向\u id:paymentIntent.id
时发送的
付款\u id。检查代码示例的第17行: