简体   繁体   English

Paypal 3rd Party Shopping Cart集成不返回表格值

[英]Paypal 3rd party Shopping Cart integration doesnot return form values

I am facing a problem in paypal 3rd party shopping cart integration. 我在贝宝(Paypal)第三方购物车集成中遇到问题。 After the sucessfull payment, it doesnot get back values from paypal. 成功付款后,它不会从Paypal取回值。 I am using the following code: 我正在使用以下代码:

<form action="https://www.sandbox.paypal.com/cgi-bin/webscr" method="post">
<input type="hidden" name="cmd" value="_cart">
<input type="hidden" name="upload" value="1">
<input type="hidden" name="business" value="example@mail.com">
<input type="hidden" name="item_name_1" value="Item Name 1">
<input type="hidden" name="amount_1" value="1.00">
<input type="hidden" name="item_name_2" value="Item Name 2">
<input type="hidden" name="amount_2" value="2.00">
<input type="hidden" name="item_name_3" value="Item Name 3">
<input type="hidden" name="amount_3" value="3.00">
<input type="hidden" name="item_name_4" value="Item Name 4">
<input type="hidden" name="amount_4" value="4.00">
<input type='hidden' name='return' value='http://localhost/paypal_multiple.php'>
<input type='hidden' name='cancel_return'value='http://localhost/paypal_multiple.php'>
<input type='hidden' name='custom' value='customer@gmail.com'>
<input type='hidden' name='notify_url' value='http://localhost/paypal_multiple.php'>
<input type="submit" value="PayPal">
</form>

Please help me. 请帮我。

After searching other questions in SO, I found that below two fields were missing.It's working fine now. 在SO中搜索其他问题后,我发现以下两个字段丢失了,现在工作正常。

<input type="hidden" name="rm" value="2" />
<input type="hidden" name="charset" value="utf-8" />

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM