我正在用 curl 测试贝宝沙箱,但每次它都给我沙箱的登录页面。有什么问题?我想在我的网站上使用 paypal pro。我不想去贝宝网站。所有付款必须我在网站上完成。
function PPHttpPost($methodName_, $nvpStr_){
global $environment;
// Set up your API credentials, PayPal end point, and API version.
$API_UserName = urlencode('XXXXXXXXXXXXXX');
$API_Password = urlencode('XXXXXXXX');
$API_Signature = urlencode('XXXXXXXXXXXXX');
$version = urlencode('51.0');
// Set the curl parameters.
$ch = curl_init("https://www.sandbox.paypal.com/cgi-bin/webscr");
//curl_setopt($ch, CURLOPT_URL, "");
//curl_setopt($ch, CURLOPT_VERBOSE, 1);
// Turn off the server and peer verification (TrustManager Concept).
curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, FALSE);
//curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, FALSE);
curl_setopt($ch, CURLOPT_HEADER, false);
curl_setopt($ch, CURLOPT_USERAGENT, 'cURL/PHP');
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($ch, CURLOPT_POST, 1);
// Set the API operation, version, and API signature in the request.
$nvpreq = "METHOD=$methodName_&VERSION=$version&PWD=$API_Password&USER=$API_UserName&SIGNATURE=$API_Signature$nvpStr_";
// Set the request as a POST FIELD for curl.
curl_setopt($ch, CURLOPT_POSTFIELDS, $nvpreq);
// Get response from the server.
$httpResponse = curl_exec($ch);
print_r($httpResponse); die;
if(!$httpResponse) {
exit("$methodName_ failed: ".curl_error($ch).'('.curl_errno($ch).')');
}
// Extract the response details.
$httpResponseAr = explode("&", $httpResponse);
$httpParsedResponseAr = array();
foreach ($httpResponseAr as $i => $value) {
$tmpAr = explode("=", $value);
if(sizeof($tmpAr) > 1) {
$httpParsedResponseAr[$tmpAr[0]] = $tmpAr[1];
}
}
if((0 == sizeof($httpParsedResponseAr)) || !array_key_exists('ACK', $httpParsedResponseAr)) {
//exit("Invalid HTTP Response for POST request($nvpreq) to $API_Endpoint.");
}
return $httpParsedResponseAr;
}