仅在支付宝付款后访问页面?

时间:2011-08-08 10:07:47

标签: php javascript paypal

我可以创建一个只有付费用付费用户才能看到的页面吗?

我正在寻找用户在他们可以访问页面之前进行付款,如果有人试图在没有付款的情况下查看该页面,他们将被重定向到错误页面

这是一个足够简单的任务吗?如果是这样我将如何设置它,是否有任何在线教程>>

它只是一个简单的2页网站,我创造它没有什么复杂....

我刚刚使用标准的paypal按钮,但我不确定它那么简单

<form action="https://www.paypal.com/cgi-bin/webscr" method="post">
<input type="hidden" name="cmd" value="_s-xclick">
<input type="hidden" name="hosted_button_id" value="V6RE5BUJCBAPU">
<input type="image" src="https://www.paypalobjects.com/en_US/GB/i/btn/btn_buynowCC_LG.gif" border="0" name="submit" alt="PayPal — The safer, easier way to pay online.">
<img alt="" border="0" src="https://www.paypalobjects.com/en_GB/i/scr/pixel.gif" width="1" height="1">
</form>

2 个答案:

答案 0 :(得分:2)

可能的解决方案确实是创建一个PayPal按钮。用户付款后,您可以将他/她重定向到自定义页面,告知他们已成功付款。您可以让PayPal将付款数据发布到此页面,您可以通过这种方式验证付款是否已成功完成。

如果是这样,你可以设置一个SESSION或COOKIE变量,并在你的“目标”页面上(他们只能在支付后才能访问),你可以验证是否已经设置了SESSION或COOKIE。如果没有,请将其重定向到付款页面。

示例

使用类似的东西:

<form action="https://www.paypal.com/cgi-bin/webscr" method="post">
    <input type="hidden" name="return" value="http://www.yourwebsite.com/index.php?payment=success" />
</form>

付款完成后,用户被重定向到 index.php?payment = success ,并且您在那里阅读了PayPal的帖子:

<?php
    $req = "cmd=_notify-synch";
    $tx_token = $_GET['tx'];
    $auth_token = "<your auth token here>";
    $req .= "&tx=$tx_token&at=$auth_token";

    //Post back to Paypal system to validate:
    $header .= "POST /cgi-bin/webscr HTTP/1.0\r\n";
    $header .= "Content-Type: application/x-www-form-urlencoded\r\n";
    $header .= "Content-Length: " . strlen($req) . "\r\n\r\n";

    $fp = fsockopen('ssl://www.paypal.com', 443, $errno, $errstr, 30);
    if (!$fp) {
        //HTTP ERROR
    }
    else {
        fputs($fp, $header . $req);

        //Read body data:
        $res = '';
        $headerdone = false;
        while (!feof($fp)) {
            $line = fgets($fp, 1024);
            if (strcmp($line, "\r\n") == 0) {
                $headerdone = true;
            }
            else{
                $res .= $line;
            }
        }

        //Parse the data:
        $lines = explode("\n", $res);
        $keyarray = array();
        if (strcmp($lines[0], "SUCCESS") == 0) {
            //Checks the payment_status is completed
            //check that txn_id has not been previously processed
            for ($i = 0; $i < count($lines); $i++) {
                list($key, $val) = explode("=", $lines[$i]);
                $keyarray[urldecode($key)] = urldecode($val);
            }
        }

        //Process payment:
        $firstname = $keyarray['first_name'];
        $lastname = $keyarray['last_name'];

        //etc... you can either insert the payment data into your database for future reference
        //Or set up a COOKIE for the user to be able to download your file.
        //Or if your payment has been successful, redirect him to a "secret" page where the file is visible.
    }
?>

答案 1 :(得分:0)

你的问题会有很多解决方案,其中一个可能如下..

您可以创建Paypal IPN处理程序页面,该页面在付款时更新您的数据库。然后,您可以手动处理所有付款,并允许这些用户查看受限制的内容。 [我假设你有某种用户管理系统,并且能够允许/禁止用户查看某些内容。]

只需fyi,当您创建PayPal按钮时,您还可以提供成功页面URI和失败/取消的页面URI。

我希望这会有所帮助。