我公司要我做一个PayPal 支付接口,要求点击 “CheckOut”后出现如下PayPal画面(我照抄了GetACoder.com网站的PayPal支付画面):GetACoder.com 
 
Checkout Secure Transaction   
---------------------------
   
Pay To:  GetACoder.com  
Payment For:  Deposit on GetACoder. Username: zjroland (id: 164584)
 
Currency:  U.S. Dollars   
Amount:  $31.37 USD 
Total Amount:  $31.37 USD--------------------------------------------------------------------------------
    
If you do not currently have a PayPal account  click here  --------------------------------------------------------------------------------
PayPal Login
   
If you already have a PayPal account, enter your log-in details below 
Email Address: [email protected]  Forget your email?  
PayPal Password: xxxxxxxx         Forget your password?                                                           Continue
请问该如何做?

解决方案 »

  1.   

    Paypal 提供了如下支付工具:
    Shopping Cart,Subscriptions and Recurring Payments,Buy Now Buttons,Donations,Checkout with PayPal Account Optional,Custom Payment Pages等,不知哪一个可以达到上面的效果?
      

  2.   

    支付时的Url如下:
    https://www.paypal.com/xclick/[email protected]&item_name=Deposit%20on%20GetACoder.%20Username:%20zjliujun%20(id:%20164584)&item_number=164584&amount=31.37&no_shipping=1&return=http%3A//www.getacoder.com/users/manage-payments.php&cancel_return=http%3A//www.getacoder.com/users/manage-payments.php&no_note=1&currency_code=USD
      

  3.   

    Paypal 给的代码如下:
    <form action="https://www.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="Deposit">
    <input type="hidden" name="no_note" value="1">
    <input type="hidden" name="currency_code" value="USD">
    <input type="image" src="https://www.paypal.com/en_US/i/btn/x-click-but23.gif" border="0" name="submit" alt="Make payments with PayPal - it's fast, free and secure!">
    </form>