ruby-on-rails – Stripe webhook身份验证 – Ruby

前端之家收集整理的这篇文章主要介绍了ruby-on-rails – Stripe webhook身份验证 – Ruby前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我的 ruby-on-rails应用程序使用条带进行卡支付. Stripe提供了一些webhooks,通过它可以联系我的应用程序,并提供有关每个事务的详细信息 – 成功或失败.

为此,我在我的控制器中有这样的事情:

class StripeController < ApplicationController
  def webhook
    data_json = JSON.parse request.body.read
    p data_json['data']['object']['customer']
  end

我的问题是如何验证此webhook的真实性?根据我的知识和理解,人们很容易模仿这种(中间人攻击).

解决方法

来自Stripe的 webhooks documentation

If security is a concern,or if it’s important to confirm that Stripe sent the webhook,you should only use the ID sent in your webhook and should request the remaining details from the Stripe API directly.

原文链接:https://www.f2er.com/ruby/268977.html

猜你在找的Ruby相关文章