我希望我的网站用户能够收到网站上其他用户的付款


I want my website users to receive payments from other users on the website?

我有一个网站,为会员提供向网站中其他会员出售广告空间的机会。我希望广告专区卖家通过PayPal收到广告空间买家的付款。可以使用PayPal IPN和PHP cURL来完成吗?

如何验证卖家是否从买家那里收到了款项,以便我可以对数据库进行更改?

您可以使用

PayPal IPN功能。

您可以参考以下链接进行 IPN 集成 。https://developer.paypal.com/webapps/developer/docs/classic/ipn/integration-guide/IPNIntro/

您还可以获取 IPN 示例代码:
https://github.com/paypal/ipn-code-samplesPayPal会将付款交易详细信息发送到您的服务器,然后您的服务器可以处理数据并将其存储到数据库中。