php – Paypal沙盒PDT失败4020

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

<?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"

我找不到任何详细说明此错误意味着什么的文档,而且完全卡住了,所以我很感激任何反馈.

解决方法:

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

相关文章

统一支付是JSAPI/NATIVE/APP各种支付场景下生成支付订单,返...
统一支付是JSAPI/NATIVE/APP各种支付场景下生成支付订单,返...
前言 之前做了微信登录,所以总结一下微信授权登录并获取用户...
FastAdmin是我第一个接触的后台管理系统框架。FastAdmin是一...
之前公司需要一个内部的通讯软件,就叫我做一个。通讯软件嘛...
统一支付是JSAPI/NATIVE/APP各种支付场景下生成支付订单,返...