Paypal ExpressCheckout API behavior changed recently

后端 未结 2 1891
一整个雨季
一整个雨季 2020-12-11 22:34

In an existing implementation of Paypal Express Checkout API, we had the landing page set to a credit card entry page by setting the flags:

SOLUTIONTYPE=Sole

相关标签:
2条回答
  • 2020-12-11 23:29

    Along with the new landing pages they also introduced a new parameter.

    USERSELECTEDFUNDINGSOURCE

    (Optional) This element could be used to specify the preferred funding option for a guest user. However, the LANDINGPAGE element must also be set to Billing. Otherwise, it is ignored.

    • BML – Bill Me Later
    • ChinaUnionPay
    • CreditCard
    • ELV

    So keep your current parameters the way they are and add this new parameter to SetExpressCheckout set to CreditCard and you should get the old flow like you're wanting.

    You also need to make sure you're using API Version 109.0 or higher because this new parameter was introduced in version 109.0.

    0 讨论(0)
  • 2020-12-11 23:31
    <input type="hidden" name="landing_page" value="Billing">
    

    This works as of Sep 2016

    Nulla vitae elit libero, a pharetra augue.

    0 讨论(0)
提交回复
热议问题