贝宝定期付款验证
PayPal recurring payment verification
与客户签订月度结算协议后;我如何在下一张账单上验证客户是否已付款(且未取消协议)?
我会使用 GetRecurringPaymentsProfileDetails
获取此信息吗?基本上,我想自动化 cancellations/etc.
在您的 ipn 端点中,发生这种情况时会发送 subscr_cancel txn_type。然后您可以更新数据库中的记录来解决这个问题。
启用 Ipn 消息后,发送 post 各种操作请求,例如付款或取消订阅。当您收到一条消息时,您需要验证该消息,确定它是什么消息,然后在您的应用程序中执行操作
Ipn 信息
https://developer.paypal.com/docs/classic/products/instant-payment-notification/
与客户签订月度结算协议后;我如何在下一张账单上验证客户是否已付款(且未取消协议)?
我会使用 GetRecurringPaymentsProfileDetails
获取此信息吗?基本上,我想自动化 cancellations/etc.
在您的 ipn 端点中,发生这种情况时会发送 subscr_cancel txn_type。然后您可以更新数据库中的记录来解决这个问题。
启用 Ipn 消息后,发送 post 各种操作请求,例如付款或取消订阅。当您收到一条消息时,您需要验证该消息,确定它是什么消息,然后在您的应用程序中执行操作
Ipn 信息
https://developer.paypal.com/docs/classic/products/instant-payment-notification/