我在我的网站上集成了PayPal。我的网站上有一个表单,它将客户带到PayPal以完成付款,然后将其返回到我的网站。然后,我的网站向PayPal发送请求,并附上PDT的交易令牌,以便我可以运行一些检查,然后使用他们购买的产品自动记入我的客户。
系统使用PHP和cURL发送所有这些过程。
我使用时:"www.sandbox.paypal.com/cgi-bin/webscr"
除了沙盒凭证外,一切都运行正常。
我将其全部更改为"www.paypal.com/cgi-bin/webscr"
它不起作用,我的代码告诉我请求失败。 我的代码:
$pp_hostname = "www.paypal.com";
// read the post from PayPal system and add 'cmd'
$req = 'cmd=_notify-synch';
$tx_token = $_GET['tx'];
$auth_token = "#######-hashed_out_here-########";
$req .= "&tx=$tx_token&at=$auth_token";
$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);
//set cacert.pem verisign certificate path in curl using 'CURLOPT_CAINFO' field here,
//if your server does not bundled with default verisign certificates.
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){
$this->twig->error("Request failed.");
}else{
$lines = explode("\n", $res);
$keyarray = array();
if (strcmp ($lines[0], "SUCCESS") == 0) {
for ($i='1'; $i<count($lines);$i++){
$test = explode("=", $lines[$i]);
if(empty($test[1])){
$keyarray[urldecode($test[0])] = '';
}else{
$keyarray[urldecode($test[0])] = urldecode($test[1]);
}
}
//give product
} else if (strcmp ($lines[0], "FAIL") == 0) {
$this->twig->error('Transaction failed!');
}
}
不确定我为什么遇到问题所以我不知道如何解决问题。 我的PayPal帐户设置为Business,已打开PDT和IPN以及自动返回
编辑:cURL也没有发生错误。
好的,if(!($res = curl_exec($ch)))
正在返回true,即它不起作用