PayPal POST变量不起作用(PHP)

时间:2013-08-07 00:01:44

标签: php post paypal paypal-sandbox

我正在尝试在我正在处理的网站上设置PayPal'订阅'付款按钮。它是一个发送到PayPal的表单,然后在成功完成事务后将用户发送回返回URL。我目前正在使用PayPal Sandbox对此进行测试。问题是POST变量没有被发送到感谢页面(这是一个PHP页面FYI)。

我需要这个的原因是我正在更新数据库,如果用户成功完成了一个事务,它需要查看返回的变量,确定用户付费然后更新用户的信息。 MySQL数据库自动。

过去两周我一直与PayPal代表联系,他们似乎无能为力。我也研究了整个网络和Stack Overflow,目前的答案似乎都没有解决我的问题。这是我尝试过的:

  • 我开始尝试使用GET变量(但是GET变量不支持这种方式。它导致返回URL在其末尾返回一个疯狂的变量字符串而不是我的ID变量(它就像一个charset和其他东西。)PayPal代表解释说我需要使用的变量是POST变量。

  • 我已在三个不同的服务器/托管包上设置页面,以查看主机是否存在问题。我使用的三个是GoDaddy,JustHost和123-reg(英国)。没有工作。我认为主机会很好,因为PayPal是如此普遍,但我仔细检查确定。我知道.htaccess文件并没有阻止POST变量的工作,因为我已经在这个网站上的表单中使用了PHP邮件功能,所以这一切都有效。

  • 我尝试了$ _REQUEST变量而不是$ _POST变量,如下所示:Paypal Hidden variables doesn't work

以下是两页上使用的代码。您也可以自由地访问这些页面以自行测试问题,看看它是不行的:

http://www.miller-media.com/sites/paypal_test/test_form.php

代码

<html>
<head>
</head>
<body>
    <form action="https://www.sandbox.paypal.com/cgi-bin/webscr" id="paypal_form" method="post" target="_top">
        <input type="hidden" name="cmd" value="_xclick-subscriptions">
        <input type="hidden" name="item_name" value="Test Monthly Subscription">
        <input type="hidden" name="business" value="mbizz@paypal.com">
        <input type="hidden" name="a3" value="7.00">
        <input type="hidden" name="p3" value="1">
        <input type="hidden" name="t3" value="M">
        <input type="hidden" name="src" value="1">
        <input type="hidden" name="sra" value="1">
        <input type="hidden" name="no_note" value="1">
        <input type="hidden" name="custom" value="20130731 it worked">
        <input type="hidden" name="cancel_return" value="http://www.miller-media.com">
        <input type="hidden" name="return" value="http://www.miller-media.com/sites/paypal_test/mmiller.php">
        <input type="hidden" name="rm" value="2">
        <input type="submit">
    </form>
</body>
</html>

返回网址

http://www.miller-media.com/sites/paypal_test/mmiller.php

代码

<html>
<head>
</head>
<body>
    TEST FOR MILLER MEDIA

    THIS IS FOR POST 
    <?php
        echo ("Custom = " . $_POST['custom']);
        echo ("Transaction = " . $_POST['txn_id']);
        echo ("First name = " . $_POST['first_name']);
        echo ("Last name = ". $_POST['last_name']);
    ?>


</body>
</html>

以上代码是PayPal代表向我提供的内容(当我第一次设置时,我的情况略有不同)。如果您完成整个过程(使用PayPal沙箱帐户),感谢页面(mmiller.php)上不会显示任何变量。

这是PayPal代表提供给我的消息,它显示他让变量正常工作。看起来他在本地测试,所以我不确定这是否与它有关:

Here is the screenshot http://i.imgur.com/zno0UkK.jpg . But I just noticed I was using a Buy Now button but your button is a subscription.

The txn_id is not returned for subscription (that is by design) . Please see below for variables that are returned. https://cms.paypal.com/uk/cgi-bin/?cmd=_render-content&content_ID=developer/e_howto_html_IPNandPDTVariables#id091EB0901HT

This is what I get with subscription signup http://i.imgur.com/BOrw1Hn.jpg . A txn_id is not returned.

Here is also the complete POST data :

POSTDATA=txn_type=subscr_signup&subscr_id=I-0RSGVWA904CF&last_name=Connor&residence_country=GB&mc_currency=USD&item_name=StormAware+Monthly+Subscription&business=mbizz%40paypal.com&amount3=7.00&recurring=1&address_street=1+Main+Terrace&payer_status=verified&payer_email=UKrealPro%40paypal.com&address_status=confirmed&first_name=John&receiver_email=mbizz%40paypal.com&address_country_code=GB&payer_id=UXPBYWUW8ZDHA&address_city=Wolverhampton&reattempt=1&payer_business_name=John+Connor%27s+Test+Store&address_state=West+Midlands&subscr_date=16%3A37%3A38+Aug+05%2C+2013+PDT&address_zip=W12+4LQ&custom=20130731+it+worked&charset=windows-1252&period3=1+M&address_country=United+Kingdom&mc_amount3=7.00&address_name=John+Connor%27s+Test+Store&auth=AOgsYFMneBuxymkc0UoZ6OI6D-BXCQmWRz5xyilJR1-7uCvNI1kB Om1eHPbogzB7YnoOUIAZZiFOrx0ZcUgN-gQ&form_charset=UTF-8

任何帮助都会非常感激,因为这让我在过去几周感到沮丧。提前谢谢!

1 个答案:

答案 0 :(得分:1)

如果您希望返回页面中包含POST数据,则需要设置PDT(付款数据传输。)

这不建议用于更新数据库或确保发生的任何事情,因为即使启用了自动返回功能,也无法保证用户真正将其恢复到您的网站,您无疑会最终得到未正确更新的交易。

这就是为什么建议使用IPN。无论用户是否将其恢复到您的网站,都会触发IPN。

让您的感谢页面变得简单,并在IPN中完成所有后付款处理。