2012-04-25 104 views
3

我已經在我的asp.net使用網站付款標準如下集成貝寶沙箱。Paypal沙箱集成在asp.net網站使用網站付款標準

<form name="paypal" action="https://www.sandbox.paypal.com/cgi-bin/webscr" method="post"> 
<input type="hidden" name="cmd" value="_xclick" /> 
          <input type="hidden" name="business" value="[email protected]" /> 

          <input type="hidden" name="item_name" value="MyItem" /> 

          <input type="hidden" name="amount" value="0.01" /> 

          <input type="hidden" name="return" value="http://stackoverflow.com/questions/ask" /> 
          <input type="hidden" name="cancel_return" value="http://stackoverflow.com" /> 
          <input type="hidden" name="notify_url" value="http://stackoverflow.com" /> 
          <input type="hidden" name="no_shipping" value="1" /> 
          <input type="submit" value="Please Wait....." style="visibility: hidden" /> 
          </form> 

現在的問題是,當我重定向到貝寶然後首先要求登錄到貝寶沙箱帳戶。我想問一下,是否有必要登錄到貝寶沙箱進行付款。是否有任何參數,我們可以在隱藏字段發送,以便它不要求沙箱登錄。測試時

謝謝,Rajbir

回答

1

我通常預認證進入沙盒跳過/保持正常的代碼流。除了使用真實賬戶之外,我不知道任何可以做的事情。

相關問題