3D安全卡的Laravel收银员条纹问题未重定向到确认页面

时间:2020-05-25 12:29:39

标签: laravel stripe-payments confirmation 3ds

我正在努力获得Laravel Cashier Strip集成以与3d安全卡配合使用。 我已经进行了设置,因此订阅可以正常使用,并且显示在我的条纹仪表板中,并且所有内容都显示在本地数据库中。 但是,当我使用需要强身份验证的3ds卡进行测试时,它们会在我的条纹仪表板中显示为不完整状态。

我在控制台日志中看到了cashier.payment响应页面。但是收银员不应该重定向到此确认窗口吗?

我的代码如下

在我的订阅控制器中,

public function index() {

    $data = [
        'intent' => auth()->user()->createSetupIntent(),
        // 'plans' => $available_plans
    ];

    return view('artists.subscription')->with($data);
}

public function checkout(Request $request) {
    $user = auth()->user();
    $paymentMethod = $request->payment_method;
    $planId = 'monthly_sub';

    // SCA
    try {
        $subscription = $user->newSubscription('monthly', $planId)->create($paymentMethod);
    } catch (IncompletePayment $exception) {
        return redirect()->route(
            'cashier.payment',
            [$exception->payment->id, 'redirect' => route('front')]
        );        
    }

    // return response(['status' => 'Success']);
}

在我的条纹js文件中,我有这个

const stripe = Stripe('stripe_key'); // i have my test key here
const elements = stripe.elements();
const cardElement = elements.create('card',{hidePostalCode: true});
cardElement.mount('#card-element');
const cardHolderName = document.getElementById('card-holder-name');
const cardButton = document.getElementById('card-button');
const clientSecret = cardButton.dataset.secret;

cardButton.addEventListener('click', async (e) => {
    const { setupIntent, error } = await stripe.confirmCardSetup(
        clientSecret, {
            payment_method: {
                card: cardElement,
                billing_details: { name: cardHolderName.value }
            }
        }
    );


    axios.post('checkout', {
      payment_method: setupIntent.payment_method
    }).then(response => { 
      console.log(response.request.responseURL)
   })
   .catch(error => {
     console.log(error.response)
   });

});

我的刀片视图是

@extends('layouts.app')

@section('head')
@php 
// dd($intent);
@endphp
<script src="https://js.stripe.com/v3/"></script>
<link href="{{ asset('css/stripe.css') }}" rel="stylesheet">
@endsection

@section('content')

<input id="card-holder-name" type="text">

<!-- Stripe Elements Placeholder -->
<div id="card-element"></div>

<button id="card-button" data-secret="{{ $intent->client_secret }}">
    subscribe
</button>

@endsection

@section('js')

  <script src="{{ asset('js/stripe.js') }}" type="text/javascript"></script>
@endsection

一切似乎都正常,但我只是在控制台中得到3ds确认页面作为响应。如何让laravel重定向并为用户打开该页面?

1 个答案:

答案 0 :(得分:0)

我认为问题在于事件的顺序,您的代码应等待3DS被调用并完成,然后再将结果返回给您,然后再调用您的代码。使用此调节器卡[1],您应该能够通过一些小的更改进行测试(我必须删除一些东西,但这应该作为参考):

stripe.confirmCardSetup(
  "seti_xxx", {
    payment_method: {
      card: card,
      billing_details: { name: "Name" }
    }
  }).then(function(result) {
      // Check the result status here!!

      axios.post('checkout', {
        payment_method: result.setupIntent.payment_method
      }).then(response => { 
        console.log(response.request.responseURL)
      }).catch(error => {
       console.log(error.response)
     });    
    });

希望这会有所帮助!

[1] https://stripe.com/docs/testing#regulatory-cards