Paypal沙盒PDT失败4020

时间:2013-08-01 18:43:35

标签: php paypal paypal-sandbox

所以,我已经创建了一个沙箱事务,并且正在尝试在我的感谢页面上获取它的数据。

<?php

$tx = $_REQUEST['tx'];
$pdti = "REDACTED";

$url = "https://www.sandbox.paypal.com/cgi-bin/webscr";

$data = array("tx" => $tx, "at" => $pdti,"cmd" => "_notify-synch");

$options = array(
    "http" => array(
        "header" => "Content-type: application/x-www-form-urlencoded\r\n",
    "method" => "POST",
    "content" => http_build_query($data),
    ),
);

$context = stream_context_create($options);
$result = file_get_contents($url,false,$context);

var_dump($result);

?>

但是当我去了thankyoupage.php?tx = ID,其中'ID'是交易ID,我得到以下内容:

string(16) "FAIL Error: 4020"

我找不到任何详细说明此错误含义的文档,而且完全卡住了,所以我很感激任何反馈。

1 个答案:

答案 0 :(得分:6)

很可能您的身份验证令牌($pdti)输入错误。