所以,我创建了一个沙盒交易,并试图在我的感谢页面上获取它的数据。

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

我找不到任何详细说明此错误含义的文档,并且完全陷入困境,因此我将不胜感激任何反馈。

最佳答案

很可能是您输入的身份验证 token ( $pdti ) 不正确。

关于php - Paypal 沙盒 PDT 失败 4020,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/18002062/

10-13 01:33