【发布时间】:2013-05-29 23:57:50
【问题描述】:
我正在查看新的 PayPal REST API 和示例。从今天开始可以进行定期付款吗? (a.k.a:定期付款的订阅,计费周期和定期付款的次数。)
我在文档中找不到此信息。
谢谢,
【问题讨论】:
-
请尝试使用此代码进行定期 Paypal 付款。 stackoverflow.com/questions/26390065/…
标签: paypal paypal-subscriptions
我正在查看新的 PayPal REST API 和示例。从今天开始可以进行定期付款吗? (a.k.a:定期付款的订阅,计费周期和定期付款的次数。)
我在文档中找不到此信息。
谢谢,
【问题讨论】:
标签: paypal paypal-subscriptions
PayPal REST API 现在正式支持Recurring Payments(计费计划和协议)
【讨论】:
PayPal REST API 目前不提供定期付款,但 Classic API 确实提供此功能:
https://developer.paypal.com/webapps/developer/docs/classic/use-cases/
【讨论】:
【讨论】:
试试 Paypal REST API-> https://developer.paypal.com/docs/integration/direct/create-billing-plan/
设置您的帐户后,您将获得一个密钥和客户端 ID,稍后您将使用它们来调用 api。
请记住在 apiContext 上设置 grant_type,这样您就不会收到 403。
【讨论】:
Billing Plan and Agreement API 也已弃用,我们可以使用 Subscription API 代替,
集成指南:https://developer.paypal.com/docs/subscriptions/integrate/#
【讨论】: