本文介绍了如何在paypal定期付款中设置初始金额的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

下面是我的API,我如何设置一些初始金额





redirectUrl = SubURL +&+business = + PayPalEmail +&+item_name = Subscription&item_number = 1&amount =+ AmountMonthly +&+no_shipping = 1&no_note = 1¤cy_code = USD&lc = US&bn = PP-BuyNowBF&+return =+ SuccessUrl +&+ cancel_return = ++ CancelUrl +&+rm = 2&custom =+ paymentId +&t2 = M&a3 =+ AmountMonthly +&p3 = 1&t3 = M&src =++ Recurring +&srt = 12&sra = 1&modify = 0;

below is my API, how i set some initial amount


redirectUrl = SubURL + "&" + "business=" + PayPalEmail + "&" + "item_name=Subscription&item_number=1&amount=" + AmountMonthly + "&" + "no_shipping=1&no_note=1¤cy_code=USD&lc=US&bn=PP-BuyNowBF&" + "return=" + SuccessUrl + "&" + "cancel_return=+" + CancelUrl + "&" + "rm=2&custom=" + paymentId + "&t2=M&a3=" + AmountMonthly + "&p3=1&t3=M&src=" + "" + Recurring + "&srt=12&sra=1&modify=0";

推荐答案


这篇关于如何在paypal定期付款中设置初始金额的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

07-15 18:00