使用 google 支付令牌测试 api 支付

Test stripe api payment using google pay token

我在我的网站前端设置了一个 Google 支付按钮,并测试了与 Google 支付 API 的通信,并已成功收到响应。

我有一个Laravel项目(PHP)所以前端将这个数据发送到服务器进行处理。

收到此回复后,我不确定如何将所需信息传递给 stripe api。根据我的理解,我需要将响应中收到的令牌传递给 stripe 的 api,但不确定如何使用此令牌制定条带化请求。

如有任何帮助,我们将不胜感激

在 PHP 这边,您需要使用 stripe-php 库在 Stripe 上创建一个 Charge:https://stripe.com/docs/api/charges/create

你从Google支付得到的Stripe Token,你会在source: tok_123参数下传递它。

(推荐)如果您正在使用 PaymentIntent/PaymentMethod 对象,您将使用 API 创建一个 PaymentIntent (https://stripe.com/docs/api/payment_intents/create) 并传递 payment_method: pm_123.