我是PHP& PayPal并试图根据以下PayPal文章弄清楚我是否需要升级TLS:https://www.paypal-knowledge.com/infocenter/index?page=content&id=FAQ1914
要验证系统我使用 tlstest.paypal.com 端点,如下所示:
$header = '';
$header .= "POST /cgi-bin/webscr HTTP/1.1\r\n";
$header .= "Content-Type: application/x-www-form-urlencoded\r\n";
$header .= "Host: tlstest.paypal.com\r\n";
$header .= "Content-Length: " . strlen($req) . "\r\n\r\n";
$paypaladdr = 'tlstest.paypal.com';
$fp = fsockopen('ssl://'.$paypaladdr, 443, $errno, $errstr, 30);
我立即收到以下回复:
HTTP/1.1 200 OK
Content-Type: text/html
Content-Length: 20
Connection: keep-alive
然后在几分钟(6-8)分钟后,我得到: PayPal_Connection_OK
您知道为什么花这么长时间才收到 PayPal_Connection_OK 消息吗? 我希望生产终点不会发生这种情况。 我很高兴去吗?
提前谢谢。
答案 0 :(得分:1)
只要你从PayPal服务器获得connection_ok,连接就可以了。
谢谢你。