连接到贝宝不起作用

Posted

技术标签:

【中文标题】连接到贝宝不起作用【英文标题】:Connect to paypal dose'nt work 【发布时间】:2016-05-21 04:41:09 【问题描述】:

我尝试使用 pdt 检查付款 这是我的代码:

$pp_hostname = "www.paypal.com"; 
$req = 'cmd=_notify-synch';
$tx_token = $_GET['tx'];
$req .= "&tx=$tx_token&at=$asimon";
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, "https://$pp_hostname/cgi-bin/webscr");
curl_setopt($ch, CURLOPT_POST, 1);
curl_setopt($ch, CURLOPT_RETURNTRANSFER,1);
curl_setopt($ch, CURLOPT_POSTFIELDS, $req);
curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, 1);
curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, 2);
curl_setopt($ch, CURLOPT_HTTPHEADER, array("Host: $pp_hostname"));
$res = curl_exec($ch);
curl_close($ch);
if(!$res)
echo 'Error';

而且我总是出错; 我付款了,但连接不起作用 有什么问题?

【问题讨论】:

使用php.net/manual/ru/function.curl-error.php 【参考方案1】:

您的服务器可能没有新的 PayPal 证书链。对此进行测试,如果可行,请更新您的证书:

curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, 0);
curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, 0);

也删除这个:

curl_setopt($ch, CURLOPT_HTTPHEADER, array("Host: $pp_hostname"));

curl 已经发送了该标头

【讨论】:

@Harmanmet 嗨!如果可行,请将我的帖子标记为答案 =D

以上是关于连接到贝宝不起作用的主要内容,如果未能解决你的问题,请参考以下文章

[Docker]:将 PHPMyAdmin 连接到 MySQL 不起作用

在django中将js连接到html不起作用

将AVAudioSourceNode连接到AVAudioSinkNode不起作用

从 Servlet 连接到 MySQL 不起作用 [重复]

芹菜不起作用:无法连接到 amqp://guest:**@127.0.0.1:5672//

React Router 4.x - PrivateRoute 在连接到 Redux 后不起作用