Paypal与PHP中的IPN无法在新的Beta开发人员沙箱中工作

时间:2013-03-19 12:48:39

标签: paypal paypal-ipn paypal-sandbox

我已经在PHP中集成了PayPal和IPN,在新的Paypal开发之前,它重定向到沙箱并成功登录Sandbox,它允许测试付款,现在它重定向到beta开发者网站,而不是测试付款,

以下是我使用的PHP Paypal类,

class paypal_class {
var $error; // holds the error encountered
var $ipn_log; // log IPN results
var $ipn_log_file; // filename of the IPN log
var $ipn_response; // holds the IPN response from PayPal
var $ipn_data = array(); // contains the POST values for IPN
var $fields = array(); // holds the fields to submit to PayPal
function paypal_class() {
// constructor.
$this->paypal_url = 'https://www.paypal.com/cgi-bin/webscr';
$this->error = '';
$this->ipn_log_file = '.ipn_results.log';
$this->ipn_log = true;
$this->ipn_response = '';
$this->add_field('rm','2'); // Return method = POST
$this->add_field('cmd','_xclick');
}
function add_field($field, $value) {
// adds a key=>value pair to the fields array
$this->fields["$field"] = $value;
}
function submit_paypal_post() {
// generates an HTML page consisting of
// a form with hidden elements which is submitted to PayPal
echo "<html>\n";
echo "<head><title>Processing...</title></head>\n";
echo "<body onLoad=\"document.forms['paypal_form'].submit();\">\n";
echo "<center><h2>Please wait, your order is being processed and you";
echo " will be redirected to the paypal website.....</h2></center>\n";
echo "<form method=\"post\" name=\"paypal_form\" ";
echo "action=\"".$this->paypal_url."\">\n";
foreach ($this->fields as $name => $value) {
echo "<input type=\"hidden\" name=\"$name\" value=\"$value\"/>\n";
}
echo "<center><br/><br/>If you are not automatically redirected to ";
echo "paypal within 5 seconds...<br/><br/>\n";
echo "<input type=\"submit\" value=\"Click Here\"></center>\n";
echo "</form>\n";
echo "</body></html>\n";
}
function validate_ipn() {
// parse the paypal URL
$url_parsed=parse_url($this->paypal_url);
// generate the post string from the _POST vars
$post_string = '';
foreach ($_POST as $field=>$value) {
$this->ipn_data["$field"] = $value;
$post_string .= $field.'='.urlencode (stripslashes ($value)).'&';
}
$post_string .= "cmd=_notify-validate";
// open the connection to paypal
$fp = fsockopen($url_parsed[host],"80",$err_num,$err_str,30);
if(!$fp) {
// Print the error if not able to open the connection.
$this->error = "Error no. $errnum: $errstr";
$this->log_ipn_results(false);
return false;
} else {
// Post data back to paypal
fputs($fp, "POST $url_parsed[path] HTTP/1.1\r\n");
fputs($fp, "Host: $url_parsed[host]\r\n");
fputs($fp, "Content-type: application/x-www-form-urlencoded\r\n");
fputs($fp, "Content-length: ".strlen($post_string)."\r\n");
fputs($fp, "Connection: close\r\n\r\n");
fputs($fp, $post_string . "\r\n\r\n");
// loop through the response from the server and append to variable
while(!feof($fp)) {
$this->ipn_response .= fgets($fp, 1024);
}
fclose($fp); // close connection
}
if (eregi("VERIFIED",$this->ipn_response)) {
// Valid IPN.
$this->log_ipn_results(true);
return true;
} else {
// Invalid IPN.
$this->error = 'IPN Validation Failed.';
$this->log_ipn_results(false);
return false;
}
}
function log_ipn_results($success) {
if (!$this->ipn_log) return;
// Timestamp
$text = '['.date('m/d/Y g:i A').'] - ';
// Success or failure
if ($success) $text .= "SUCCESS!\n";
else $text .= 'FAIL: '.$this->error."\n";
// Log the POST variables
$text .= "IPN POST Values from Paypal:\n";
foreach ($this->ipn_data as $key=>$value) {
$text .= "$key=$value, ";
}
// response from the paypal server
$text .= "\nIPN Response from Paypal Server:\n ".$this->ipn_response;
// Write to log
$fp=fopen($this->ipn_log_file,'a');
fwrite($fp, $text . "\n\n");
fclose($fp); // close file
}
}

先谢谢,

1 个答案:

答案 0 :(得分:0)

Paypal做了一些改变。现在在https://developer.paypal.com/上创建一个帐户我使用了与沙箱一样的电子邮件ID。注册过程登录https://developer.paypal.com/后 单击应用程序 单击沙盒帐户 要导入以前的沙箱数据,请单击“导入数据”链接或单击“创建帐户”按钮创建新的测试帐户

Paypal在注册时创建默认商家帐户。 要查看任何沙盒帐户,只需单击它即可。将有新的选择。浏览这些功能。

您可以在此处再次使用沙箱详细信息

相关问题