- android - RelativeLayout 背景可绘制重叠内容
- android - 如何链接 cpufeatures lib 以获取 native android 库?
- java - OnItemClickListener 不起作用,但 OnLongItemClickListener 在自定义 ListView 中起作用
- java - Android 文件转字符串
我有一个问题,我想他们也发现了很多其他问题。我正在尝试将 PayPal 支付系统集成到我的网站中,但我在 IPN 方面遇到了一些问题。我试过这段代码,在 github Paypal 上找到:
<?php require('PaypalIPN.php');
use PaypalIPN;
$ipn = new PayPalIPN();
// Use the sandbox endpoint during testing.
$ipn->useSandbox();
$verified = $ipn->verifyIPN();
if ($verified) {
}
// Reply with an empty 200 response to indicate to paypal the IPN was received correctly.
header("HTTP/1.1 200 OK");
?>
必修课:
<?php
class PaypalIPN
{
private $use_sandbox = false;
private $use_local_certs = true;
/*
* PayPal IPN postback endpoints
*/
const VERIFY_URI = 'https://ipnpb.paypal.com/cgi-bin/webscr';
const SANDBOX_VERIFY_URI = 'https://ipnpb.sandbox.paypal.com/cgi-bin/webscr';
/*
* Possible responses from PayPal after the request is issued.
*/
const VALID = 'VERIFIED';
const INVALID = 'INVALID';
/**
* Sets the IPN verification to sandbox mode (for use when testing,
* should not be enabled in production).
* @return void
*/
public function useSandbox()
{
$this->use_sandbox = true;
}
/**
* Determine endpoint to post the verification data to.
* @return string
*/
public function getPaypalUri()
{
if ($this->use_sandbox) {
return self::SANDBOX_VERIFY_URI;
} else {
return self::VERIFY_URI;
}
}
/**
* Verification Function
* Sends the incoming post data back to paypal using the cURL library.
*
* @return bool
* @throws Exception
*/
public function verifyIPN()
{
if ( ! count($_POST)) {
throw new Exception("Missing POST Data");
}
$raw_post_data = file_get_contents('php://input');
$raw_post_array = explode('&', $raw_post_data);
$myPost = [];
foreach ($raw_post_array as $keyval) {
$keyval = explode('=', $keyval);
if (count($keyval) == 2) {
// Since we do not want the plus in the datetime string to be encoded to a space, we manually encode it.
if ($keyval[0] === 'payment_date') {
if (substr_count($keyval[1], '+') === 1) {
$keyval[1] = str_replace('+', '%2B', $keyval[1]);
}
}
$myPost[$keyval[0]] = urldecode($keyval[1]);
}
}
// Build the body of the verification post request, adding the _notify-validate command.
$req = 'cmd=_notify-validate';
$get_magic_quotes_exists = false;
if (function_exists('get_magic_quotes_gpc')) {
$get_magic_quotes_exists = true;
}
foreach ($myPost as $key => $value) {
if ($get_magic_quotes_exists == true && get_magic_quotes_gpc() == 1) {
$value = urlencode(stripslashes($value));
} else {
$value = urlencode($value);
}
$req .= "&$key=$value";
}
// Post the data back to paypal, using curl. Throw exceptions if errors occur.
$ch = curl_init($this->getPaypalUri());
curl_setopt($ch, CURLOPT_HTTP_VERSION, CURL_HTTP_VERSION_1_1);
curl_setopt($ch, CURLOPT_POST, 1);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($ch, CURLOPT_POSTFIELDS, $req);
curl_setopt($ch, CURLOPT_SSLVERSION, 6);
curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, 1);
curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, 2);
// This is often required if the server is missing a global cert bundle, or is using an outdated one.
if ($this->use_local_certs) {
curl_setopt($ch, CURLOPT_CAINFO, __DIR__ . "/cert/cacert.pem");
}
curl_setopt($ch, CURLOPT_FORBID_REUSE, 1);
curl_setopt($ch, CURLOPT_CONNECTTIMEOUT, 30);
curl_setopt($ch, CURLOPT_HTTPHEADER, ['Connection: Close']);
$res = curl_exec($ch);
$info = curl_getinfo($ch);
$http_code = $info['http_code'];
if ($http_code != 200) {
throw new Exception("PayPal responded with http code $http_code");
}
if ( ! ($res)) {
$errno = curl_errno($ch);
$errstr = curl_error($ch);
curl_close($ch);
throw new Exception("cURL error: [$errno] $errstr");
}
curl_close($ch);
// Check if paypal verfifes the IPN data, and if so, return true.
if ($res == self::VALID) {
return true;
} else {
return false;
}
}
}
当我使用 IPN 模拟器进行测试时,我得到以下响应:未发送 IPN,并且未验证握手。请检查您的信息。有人可以帮助我吗?
最佳答案
来自您的示例代码:
<?php require('PaypalIPN.php');
^^^ /** This will cause your script to fail.**/
在 Paypal IPN 接受页面上,您的 PHP 周围应该没有空格。
如果您还没有安装他们的 cacert.pem
文件,那么您需要调整类设置,以便 paypal 类 cURL 不会尝试使用该 pem 文件:
private $use_local_certs = false; // set to true when you have the
// file in your server filesystem
在 IPN 模拟器上,您需要选择 Web-accept 作为要执行的模拟类型。
require
文件是否存在?根据您的代码,该文件应该与您的 IPN 监听器文件位于同一文件夹中。是这样吗?如果找不到该文件,脚本将失败。
让我们知道这些细节是否解决了问题,或者您是否有更多细节要添加。
关于php - IPN Paypal "official"示例代码不起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40450860/
我正在阅读有关条纹安全性的教程,它告诉我像这样注释 @RolesAllowed({ "Administrator", "User if ${user eq message.folder.use
那里有许多词法分析器和解析器生成器 - lex/flex 和 yacc/bison、jflex 和 javacup、gplex 和 gppg 等。我想知道语言的官方开发人员使用什么工具 - Sun 和
遇到一种愚蠢的问题。 我想在 map/reduce 脚本的阶段之间传递一个变量。是否有“官方”或最佳方式来执行此操作(而不是将其与返回结果一起发送)。 这是我最后的方法: /** *
使用间隔useInterval来自 this blog post by Dan Abramov (2019) : function useInterval(callback, delay) { c
最近,我们开始遇到向网络应用程序的用户呈现过时的国家/地区列表的问题。 我们目前有一些数据库表来存储本地化的国家/地区名称及其地区(州)。然而,随着地球的发展,该列表在不断演变,并且事实证明维护起来很
我曾经依赖Novell ftp site检索完全成熟的基于 Linux 的 Mono 虚拟机。 最新可用的 VM 是 Mono-2.10.2,发布于 2011 年 4 月 26 日(早于 "Attac
当您在 YouTube 上搜索音乐视频时,结果中通常会出现标记为“官方”的视频。示例: 有没有办法通过 API 调用检索此标志? https://gdata.youtube.com/feeds/api
我需要创建一堆partial可以 pickle 的功能。根据经验测试,它似乎工作得很好: import pickle import functools pickle.dumps(functools.p
自 7 月 17 日起,旧的分享按钮在我管理的所有网站上都停止工作了。 我已经阅读了其他面临类似问题的用户的报告,但我找不到任何官方信息。 您知道是否有任何官方资源可用吗? 最佳答案 更新:截至 20
在 PHP 中,您可以使用 json_encode 将对象编码为 json 字符串。 $string = json_encode($some_object); 但是,PHP 有大量不被视为对象的标准数
是否有权威的和/或事实上的文件详细说明 CPAN 的工作原理,足够详细,以至于任何人都可以使用它从头开始重建 CPAN,而无需依赖口头传统和传闻?记录目录结构的东西,应该在发行版中的文件,版本号是如何
suggested strategy在 docker 中管理和备份数据看起来像这样: docker run --name mysqldata -v /var/lib/mysql busybox tru
我只是想知道 - 如果我需要将程序集部署到 GAC 中,“官方”的做法是什么? 目前,我们要么手动拖放到 c:\windows\assembly 文件夹中,要么使用 gacutil.exe。第一种方法
我正在 Coursera 上学习 Scala 类(class)。我也开始阅读 Odersky 的 Scala 书。 我经常听到的是,在函数式语言中抛出异常不是一个好主意,因为它破坏了控制流,并且我们通
我正在寻找 MSVC++ 特定的任意精度库。由于我的工作不需要跨平台兼容性,因此我不想让这一切变得困惑。 我尝试查看NTL但当看到像“These steps work with MSVC++ v6”这
我是 Paypal 的新手,我正在尝试使用 IPN 来了解交易何时完成。我读过 Paypal documentation for IPN , 它提供了一些 IPN listener code samp
我正在部署一个由几十个文件和文件夹组成的 Python 模块;我使用 Mercurial 来管理软件更改。 我想在三个分支中保留相同的模块:官方分支(团队使用的)、开发分支(这可能是多个开发分支)和测
我有一个问题,我想他们也发现了很多其他问题。我正在尝试将 PayPal 支付系统集成到我的网站中,但我在 IPN 方面遇到了一些问题。我试过这段代码,在 github Paypal 上找到:
我注意到像 node-temp 这样的包和 node-tmp ,它提供了用于将临时文件写入当前操作系统的适当临时目录的 API,例如/tmp. 与简单地将临时文件存储在模块/应用程序的子目录(例如 .
我正在尝试全局更新 higcharts 文本字体,我在文档中找不到如何使用 highcharts-react-official 应用自定义主题的任何地方。是否有 Highcharts.theme =
我是一名优秀的程序员,十分优秀!