0
我希望將項目提交到購物車,並使用動態提供的字段將其重定向到PayPal,以便從網站的代碼末尾進行付款。我曾嘗試使用cfhttp,但它沒有通過重定向。我試過resolveurl=yes
和redirect=yes
,但他們也沒有工作。有沒有另一種方法來做到這一點?ColdFusion貝寶服務器表格帖子
<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="[email protected]" 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>
這看起來不像NVP API,他似乎試圖模擬用戶點擊貝寶生成的按鈕。 –
您的指南鏈接不起作用。我試圖模擬用戶點擊 – Rumpleteaser
該教程在這裏:http://tutorial23.easycfm.com/ – Lucas