Stripe PaymentIntent с ручным способом подтверждения не работает каждый раз - PullRequest
1 голос
/ 11 июля 2020

Я использую Laravel с личной интеграцией Stripe API (используя Stripe API из github). Все работало нормально, пока я не переключился в режим ручного подтверждения, и теперь я получаю следующую ошибку:

This PaymentIntent pi_**************uVme cannot be confirmed using your publishable key because its `confirmation_method` is set to `manual`. Please use your secret key instead, or create a PaymentIntent with `confirmation_method` set to `automatic`.

Есть идеи? Это мой текущий код (который не работает):

Stripe::setApiKey(config('services.stripe.secret')); // config('services.stripe.secret') returns "sk_test_gFi********************nMepv"

$paymentIntent = PaymentIntent::create([
    'amount' => $orderSession->order_total * 100,
    'currency' => 'eur',
    'description' => "Pagamento di ".(price($orderSession->order_total))."€ a ".$orderSession->user->user_name." in data ".(now()->format("d-m-Y H:m:s")),
    'metadata' => [
        'subtotal' => $orderSession->order_subtotal,
        'user'=> "{$orderSession->user_id} : {$orderSession->user->user_email}",
        'wines'=> substr(
                        $orderSession->wines()->select('wine_id', 'quantity')->get()->each(
                            function($el){
                                $el->q= $el->quantity;
                                $el->id = $el->wine_id;
                                unset($el->wine_id, $el->pivot, $el->quantity);
                            }
                        )->toJson(),
                        0,
                        500
                    ),
    ],
    'confirmation_method' => 'manual',
]);

JS интерфейс:

<button class="myButtonPayment" id="card-button" type="button" data-secret="{!!$stripePaymentIntent->client_secret!!}" ><span>Pay</span></button>
...
<script>
cardButton.addEventListener('click', function() {
    if(!document.getElementById('order_telephone_number').value || /^\+?[0-9 ]{6,20}$/.test(document.getElementById('order_telephone_number').value)){
           stripe.handleCardPayment(
               clientSecret, cardElement, {
                   payment_method_data: {
                         billing_details: {name: cardholderName.value}
                   }
               }
           ).then(function (result) {
               if (result.error) {
                   console.log(result.error);
              } else {
                   document.getElementById('myForm').submit();
              }
           });
    } 
});
</script>

Ошибка возникает, когда я нажимаю кнопку (поэтому не имеет отношения в ту часть кода, где подтверждаю платеж)

Сериализация ошибки следующая:

{
   "type":"invalid_request_error",
   "code":"payment_intent_invalid_parameter",
   "doc_url":"https://stripe.com/docs/error-codes/payment-intent-invalid-parameter",
   "message":"This PaymentIntent pi_1H3TQ*********T00uVme cannot be confirmed using your publishable key because its `confirmation_method` is set to `manual`. Please use your secret key instead, or create a PaymentIntent with `confirmation_method` set to `automatic`.",
   "payment_intent":{
      "id":"pi_1H3***********uVme",
      "object":"payment_intent",
      "amount":2060,
      "canceled_at":null,
      "cancellation_reason":null,
      "capture_method":"automatic",
      "client_secret":"pi_1H3TQ********T00uVme_secret_2T7Di*********nkoaceKx",
      "confirmation_method":"manual",
      "created":1594415166,
      "currency":"eur",
      "description":"....",
      "last_payment_error":null,
      "livemode":false,
      "next_action":null,
      "payment_method":null,
      "payment_method_types":[
         "card"
      ],
      "receipt_email":null,
      "setup_future_usage":null,
      "shipping":null,
      "source":null,
      "status":"requires_payment_method"
   }
}

1 Ответ

1 голос
/ 11 июля 2020

Ручное подтверждение намерений платежа предназначено только для подтверждения на стороне сервера (то есть с вашим секретным ключом API, а не с вашим публикуемым ключом). Установка confirmation_method на manual в Платежном намерении - это то же самое, что сказать: «Это Платежное намерение может быть подтверждено только на стороне сервера».

Подробнее об этом можно прочитать в finalize платежи по гиду сервера в документации Stripe.

...