我试图让 PDT 在沙箱中工作,并且刚刚遇到了使用 HTTP 1.1 的问题,如下所述:
https://stackoverflow.com/a/14701946/391615
改变了一切,当我创建与
$fp = fsockopen ('ssl://www.sandbox.paypal.com', 443, $errno, $errstr, 30);
fputs ($fp, $header . $req);
// read the body data
$res = '';
while (!feof($fp))
{
$line = fgets ($fp, 1024);
// etc...
我发现返回的第一行如下所示:
423 成功 mc_gross=240.00 发票=PP0000 protection_eligibility=部分+合格+-+INR+仅 address_status=未确认
知道 423 是什么意思吗?