我想将商品提交到购物车并重定向到 PayPal,以便使用动态提供的字段从网站的代码端付款。我曾尝试使用 cfhttp,但它没有通过重定向。我试过了resolveurl=yes
,redirect=yes
但他们也没有工作。还有另一种方法可以做到这一点吗?
<cfhttp method="post" url="https://www.paypal.com/cgi-bin/webscr">
<cfhttpparam type="Formfield" value="_cart" name="cmd">
<cfhttpparam type="Formfield" value="1" name="upload">
<cfhttpparam type="Formfield" value="NZD" name="currency_code">
<cfhttpparam type="Formfield" value="myEmail@gmail.com" name="business">
<cfhttpparam type="Formfield" value="My First Item" name="item_name_1">
<cfhttpparam type="Formfield" value="1.00" name="amount_1">
<cfhttpparam type="Formfield" value="1" name="quantity_1">
<cfhttpparam type="Formfield" value="My Second Item" name="item_name_2">
<cfhttpparam type="Formfield" value="2.00" name="amount_2">
<cfhttpparam type="Formfield" value="2" name="quantity_2">
</cfhttp>