PHP verify PayPal Donation

前端 未结 3 577
终归单人心
终归单人心 2021-02-08 13:22

How can I verify a paypal donation?

In the user panel I have a donate button. And once someone actually donates I want to do something to him. But I do not know how to c

3条回答
  •  不思量自难忘°
    2021-02-08 13:50

    There are two way to check donor made donation:

    1) used "notify_url" parameter (safe)

    2) used "return" parameter ( unsafe)

    Code example:

    When some one made donation donor automatically redirect to return url but this option is not safe because may be some one direct open this url.

    best way to know donor made donation choose paypal notify_url parameter.

    PayPal will send post request to notify_url.

提交回复
热议问题