是否可以加密或隐藏paypal自动返回网址?

时间:2013-06-09 04:30:31

标签: html paypal

我有一个程序,我希望通过paypal销售,但一旦用户付费软件,他们将被带到一个易于共享的下载页面。我知道我可以 为了防止人们共享该文件,但购买此软件的客户通常并不精通,因此分享链接有点困难可能会很有效。我想可能从启用下载的自动返回传递url参数?我的网站主机只是html,因此一些更多的后端选项无效。我可以通过电子邮件发送链接,但我希望自动回复。我可以用密码保护文件并通过电子邮件发送密码,但这不太吸引人。如果有人有一个简单的威慑解决方案,我很乐意听到它(隐藏网址我想现在很多浏览器都不可能?)

1 个答案:

答案 0 :(得分:0)

<强> test_dl_test.php ::

<?php
$email=$_REQUEST['email'];
$key = $_REQUEST['key'];
$go = $_REQUEST['go'];

/*
$query = "SELECT * FROM purchases WHERE key LIKE '".$key."' AND email LIKE '".$email."'"; // instead of (*), you could get the URL
$result = mysqli_query($db_handler,$query) or trigger_error(mysqli_error($dh_handler));
if (mysqli_num_rows($result)!=1) {
    die("ERROR! Purchase history not found!");
}
// OPTIONALLY
// $result = mysqli_fetch_assoc($result);
// $software_url = result['URL'];

*/

if ($go==1) {   
    $url = "http://www.vbaccelerator.com/home/VB/Code/vbMedia/Audio/Lossless_WAV_Compression/Sample_APE_File.zip";
    header('Location: '.$url);
}

?>

<html>
<a href="test_dl_test.php?go=1&email=someone@somehwere.com&key=12340589knd9af8i">click here!</a>
</html>