我在沙盒帐户中设置了一个webhook . 我在.NET MVC5项目中使用C#SDK .

我的站点中有一个指向(设置为接收POST请求)的 endpoints .

我正在使用REST API,我想要涵盖以下内容:

Payment sale completed, Payment sale denied, Payment sale pending, Payment sale refunded, Payment sale reversed

当我在我的网站上购买订阅时,一切都会通过,我可以在PayPal开发者控制台中看到 Payment.Sale.Completed 的活动 .

如果我从开发者控制台直接向我的站点触发JSON,一切正常 .

我的webhook设置在 https URL上 .

我在webhook endpoints 中禁用了Request验证(用于测试) .

我已经尝试为'ALL'和上述事件设置webhook .

当我在paypal开发者控制台中单击 Resend 时,没有任何反应 . 它似乎没有打到我的网站 endpoints !请帮忙!