我正在尝试将PayPal集成到我的网站。我的要求是我想将计算机生成的金额传递给PayPal以支付该金额。 但是当我使用按钮付款时,我被带到网站付款,我在哪里使用沙盒帐户登录并付款。但是当我付款时,我会收到一条消息说
我们很抱歉目前似乎没有工作。
我从类似的问题中搜索了可能出现的问题并实施了建议的修复程序,即在服务器中托管按钮并提供不同的参数,但没有运气。这是我正在使用的代码
<form
action="https://www.sandbox.paypal.com/cgi-bin/webscr" method="post">
<!-- Identify your business so that you can collect the payments. -->
<input type="hidden" name="business" value="**********@gmail.com">
<!-- Specify a Buy Now button. -->
<input type="hidden" name="cmd" value="_xclick">
<!-- Specify details about the item that buyers will purchase. -->
<input type="hidden" name="item_name" value="Product1">
<input type="hidden" name="item_number" value="1">
<input type="hidden" name="amount" value="10.00">
<input type="hidden" name="currency_code" value="USD">
<input type="hidden" name="rm" value="2" />
<!--in custom field add user id-->
<input type="hidden" name="custom" value="102">
<!-- Specify URLs -->
<input type='hidden' name='cancel_return' value='http://www.shreyash.tech'>
<input type='hidden' name='return' value='http://www.google.co.in'>
<input type="image" name="submit" border="0" src="https://www.paypalobjects.com/en_US/i/btn/btn_buynow_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>
我不知道我在这里做错了什么。