我用来实现贝宝定期付款到我的网络application.where我得到一个回应,从贝宝通过即时支付通知到我的(paypalipn.php)页面如下所示。
$payment_status = completed;
$txn_type = recurring_payment;
$paypal_txn_id = id comes here;
$parent_txn_id = id comes here;
$recurring_payment_id = id comes here;这是我第一次得到的回复,但预计是第一次,
$payment_status = completed;
$txn_type = recurring_payment_profile_created;
$paypal_txn_id = id comes here;
$parent_txn_id = id comes here;
$recurring_payment_id = id comes here;因此,任何一点都可以告诉我可能发生了什么错误,或者发生错误的原因是什么.
发布于 2013-02-06 02:44:51
这两个事件通常都会在创建新的定期付款配置文件时触发。一个用于创建经常性付款配置文件,另一个用于根据该经常性付款配置文件处理的第一次付款。从技术上讲,recurring_payment_profile_created应该在recurring_payment之前出现;但是,IPN是异步的,因此IPN可以无序交付。
https://stackoverflow.com/questions/14701281
复制相似问题