2013-07-14 124 views
0

我需要允許定期訂閱。到目前爲止,它看起來不錯,只是Paypal沒有完全遵守「返回」隱藏變量值。它執行重定向,但省略了提供的查詢字符串。它確實添加了幾個查詢字符串變量,如www.mysite.com?auth=XXXX & form_charset = YYYY貝寶返回URL

對於我的解決方案,我希望依賴查詢字符串的某些值(如果可能的話)。否則,我將不得不在Session中存儲該臨時信息。

任何想法?

<form action="https://www.sandbox.paypal.com/cgi-bin/webscr" method="post"> 

     <input type="hidden" name="cmd" value="_xclick-subscriptions"> 
     <input type="hidden" name="business" value="MerchantEmailAddress" /> 

     <input type="hidden" name="item_name" value="Description of Transaction"> 

     <input type="hidden" name="a3" value="5.00"> 
     <input type="hidden" name="p3" value="1"> 


     <input type="hidden" name="t3" value="M"> 
     <input type="hidden" name="src" value="1"> 

     <input type="hidden" name="custom" value="111.111111" /> 
     <input type="hidden" name="invoice" value="11" /> 

     <input type="hidden" name="cancel_return" value="http://www.MySite.com/?Cmd=Cancel" /> 
     <input type="hidden" name="return" value="http://www.MySite.com/?Cmd=Return" /> 
     <input name="notify_url" value="http://www.MySite.com/?Cmd=Notify" type="hidden"> 

     <!-- Display the payment button. --> 
     <input type="image" name="submit" border="0" src="https://www.paypalobjects.com/en_US/i/btn/btn_subscribe_LG.gif" 
       alt="PayPal - The safer, easier way to pay online"> 
     <img alt="" border="0" width="1" height="1" 
      src="https://www.paypalobjects.com/en_US/i/scr/pixel.gif"> 
    </form> 
+1

我想我找到了答案。我需要包含一個名爲「rm」的變量並將其設置爲「2」。這將使PayPal發佈一切。我會測試它。 – Sam

+0

謝謝你救了我的一天 –

回答

1

添加rm=2變量和值應該工作。這將告訴PayPal以POST的形式發回信息。如果您在賣家帳戶中啓用了付款數據傳輸功能,它將覆蓋rm的價值,從PayPal返回到您網站的信息始終爲GET。