我遇到了PayPal的Check-Out服务的实现 - 我认为它是Express Checkout - 一旦我被发送到PayPal,个人详细信息和ordrered产品已经列出并填写,只等我填写在我的信用卡信息作为客人。
我无法在PayPal API的任何地方找到相关说明。
这是如何实现的?
答案 0 :(得分:0)
您可以查看以下示例
<form action="https://www.paypal.com/cgi-bin/webscr" method="post" target="_blank">
<table width=750px>
<tr>
<td align=right valign=middle width=550px>
<font size=2 face=arial><b>To Purchase "Test Item Name" - $100.00Click Here ---></b></font>
</td>
<td width=200px valign=middle align=left>
<input type="hidden" name="cmd" value="_xclick">
<input type="hidden" name="business" value="youPaypalid@domain.com">
<input type="hidden" name="item_name" value="Test Item Name">
<input type="hidden" name="item_number" value="Test120">
<input type="hidden" name="amount" value="100.00">
<input type="hidden" name="quantity" value="1">
<input type="hidden" name="no_note" value="1">
<input type="hidden" name="currency_code" value="USD">
<input type="hidden" name="lc" value="US">
<input type="image" src="http://www.paypal.com/en_US/i/btn/btn_buynow_LG.gif" border="0" name="submit" alt="Make payments with PayPal - it's fast, free and secure!">
</td>
</tr>
</table>
</form>
您可以在以下网址上查看有关它的详细信息
答案 1 :(得分:0)
PayPal提供了大量documentation for Express Checkout。我建议您具体查看Express Checkout Integration Guide和NVP或SOAP文档,具体取决于您对哪种文档感到满意。
要获得您指定的所需效果(访客结帐始终可用),您需要在SetExpressCheckout请求中传递SOLUTIONTYPE = Sole和LANDINGPAGE =结算。