Paypal IPN - 隐藏的“返回”字段也接收信息

时间:2012-10-03 15:14:34

标签: html paypal paypal-ipn

我正在使用一些Paypal IPN项目,我发现了让我担心的事情。

我的表单中设置了以下字段:

<input type="hidden" name="return" value="http://mysite.com/succes.php" />
<input type="hidden" name="notify_url" value="http://mysite.com/ipn_handler.php" />

无论如何,当用户付费时,他将返回success.php页面并且不会与ipn_handler.php有任何关系,但是我的success.php url(在addreess栏中)从返回之后看起来像这样贝宝:

http://mysite.com/success.php?transaction_subject=57&txn_type=web_accept&payment_date=07%3A53%3A24+Oct+03%2C+2012+PDT&last_name=SOMETHING&residence_country=US&pending_reason=multi_currency&item_name=SOMETHING&payment_gross=&mc_currency=EUR&business=seller%40paypalsandbox.com&payment_type=instant&protection_eligibility=Ineligible&payer_status=verified&verify_sign=Adm5TcLO5.Dgm0ttCdwtx43iz69qAOB8yELzqmpoKwztT.v5nX7naEIQ&txn_id=77L26596YM827223E&payer_email=dugagj_1346872586_per%40gmail.com&tax=0.00&test_ipn=1&first_name=SOMETHING&receiver_email=seller%40paypalsandbox.com&quantity=0&payer_id=4D9U3R4S4D7CC&receiver_id=Y2CCK4NAA75Q2&item_number=&payment_status=Pending&mc_gross=25.00&custom=57&charset=windows-1252&notify_version=3.7&merchant_return_link=Return+to+Sandbox&auth=AqXhaNS8jZidb-pkJqUa3t2qAy-SPrpCt12155Ku703imQ3302J0cHyBD36AdiSVrY6hMc3JN6gwQo9gmRlxQjA

我不喜欢我的地址栏显示所有这些信息。这有危险吗?我在设置HTML时做错了什么?

请帮忙。

P.S:上面的网址是通过Paypal Sandbox创建的,因此您不必担心,因为它不包含任何实际付款。

1 个答案:

答案 0 :(得分:0)

在将表单提交给PayPal时检查您的rm变量。

您可能已将rm变量设置为0,1或根本未设置(默认值为0)。如果您使用值2提交此变量,那么所有信息都将通过POST发送到您的success.php页面。

因此,在您的表单中设置以下内容:

<input type="hidden" name="rm" value="2" />

请参阅rm变量here

的文档

您可以阅读更多here