0

嗨,我开发了一个项目,并且我已经实施了 Paypal 结帐以进行付款。当用户支付成功时,paypal返回我的网站,查询字符串作为成功的交易id传递,然后我将该交易id存储到我的数据库中,这表明支付成功。

在用户支付付款之前的任何几天,但交易 ID 不会落入数据库中,因此因为该应用程序显示其未付款。

我搜索了这个,发现我们需要实现 web-hook 来解​​决这个问题。任何人都可以建议如何在我的代码中实现 web-hook。

我的贝宝代码如下

Response.Write("<form action='" + ConfigurationManager.AppSettings["PayPalURL"].ToString() + "' method='post' name='buyCredits' id='buyCredits'>");
Response.Write("<input type='hidden' name='cmd' value='_xclick'>");
Response.Write("<input type='hidden' name='business' value='" + ConfigurationManager.AppSettings["BusinessURL"].ToString() + "'>");
Response.Write("<input type='hidden' name='currency_code' value='USD'>");
Response.Write("<input type='hidden' name='custom' value='"+lblorderno.Text+"'>");
Response.Write("<input type='hidden' name='item_name' value='" + ItemName + "'>");
Response.Write("<input type='hidden' name='item_number' value='" + Items + "'>");
Response.Write("<input type='hidden' name='amount'  id='amount'  value='" + Convert.ToString(Math.Round(price,2)) + "'>");
Response.Write("<input type='hidden' name='return' value='" + ConfigurationManager.AppSettings["SuccessURL"].ToString() + Convert.ToString(lblorderno.Text) + "'>");
Response.Write("<input type='hidden' name='cancel_return' value='" + ConfigurationManager.AppSettings["CancelURL"].ToString() + Convert.ToString(lblorderno.Text) + "'>");
Response.Write("</form>");

我从不使用 webhook,所以任何人都可以打电话帮助我了解如何将 webhook 集成到 paypal 中?

我也知道我会在这方面得到负面评价。

4

1 回答 1

0

大家好,就我而言,IPN 为我工作以获取实际代码,请查看以下链接:

https://www.codeproject.com/Articles/19184/Use-of-the-PayPal-payment-system-in-ASP-NET

https://www.codeproject.com/Questions/856575/How-do-I-get-ipn-response-from-paypal-in-asp-net

于 2018-05-08T17:21:46.697 回答