- android - 多次调用 OnPrimaryClipChangedListener
- android - 无法更新 RecyclerView 中的 TextView 字段
- android.database.CursorIndexOutOfBoundsException : Index 0 requested, 光标大小为 0
- android - 使用 AppCompat 时,我们是否需要明确指定其 UI 组件(Spinner、EditText)颜色
我对此很困惑,已经联系过PayPal,但没有得到任何明确的答复。也进行了搜索,但只找到了旧答案(在 PayPal 的最新路线图之前。)
抱歉,如果这是基本的。我仍然没有找到任何明确的信息来让我保持最新状态。可能只是对单词和含义有些混淆(英语不是我的母语。)
关于 PayPal 的更新:https://www.paypal-knowledge.com/infocenter/index?page=content&widgetview=true&id=FAQ1916&viewlocale=en_US
1) 我现在是否需要在我的域上使用 HTTPS?(PayPal 标准付款)
2) 我需要在其他地方做任何更改吗?
因此,我使用隐藏表单将购买信息发布到 PayPal。像这样:
<form name='form' action='https://www.paypal.com/cgi-bin/webscr' method='post' target='_top'>
<input type='hidden' name='cmd' value='_xclick'>
<input type='hidden' name='business' value='$MerchantId'>
<input type='hidden' name='item_name' value='$Descripton'>
<input type='hidden' name='return' value='$BackUrl&show=back'>
<input type='hidden' name='cancel_return' value='$CancelUrl'>
<input type='hidden' name='no_note' value='1'>
<input type='hidden' name='currency_code' value='$Currency'>
<input type='hidden' name='lc' value='US'>
<input type='hidden' name='bn' value='PP-BuyNowBF'>
<input type='hidden' name='amount' value='$GrandTotal'>
<input type='hidden' name='notify_url' value='$BackUrl&payment=ipn&i=1'>
<div align='center'>
<div id='payNow1'>
<div id=payNowLogo><img src='$ImgPath/paypal_logo.gif'></div>
<div id=payNowContent>$IPNdesc</div>
<div id=payNowButton><input type='submit' value='$IPNpay' id='payNowSubmit'></div>
</div>
</div>
</form>
此站点仅为 HTTP,因此 notify_url 仅为 HTTP。
这是我的 IPN 接收器和处理程序的代码:
else {
// read the post from PayPal system and add 'cmd'
$req = 'cmd=_notify-validate';
foreach ($_POST as $key => $value) {
$value = urlencode(stripslashes($value));
$req .= "&$key=$value";
}
// post back to PayPal system to validate
$header .= "POST /cgi-bin/webscr HTTP/1.0\r\n";
注意:上面现在必须是 HTTP/1.1 ????
$header .= "Content-Type: application/x-www-form-urlencoded\r\n";
$header .= "Content-Length: " . strlen($req) . "\r\n\r\n";
$fp = fsockopen ('www.paypal.com', 80, $errno, $errstr, 30);
// assign posted variables to local variables
$item_name = $_POST['item_name'];
$item_number = $_POST['item_number'];
$payment_status = $_POST['payment_status'];
$payment_amount = $_POST['mc_gross'];
$payment_currency = $_POST['mc_currency'];
$txn_id = $_POST['txn_id'];
$receiver_email = $_POST['receiver_email'];
$payer_email = $_POST['payer_email'];
// mc_currency = CAD
// payment_status = Completed
if (!$fp) {
// HTTP ERROR
} else {
fputs ($fp, $header . $req);
while (!feof($fp)) {
$res = fgets ($fp, 1024);
if (strcmp ($res, "VERIFIED") == 0) {
// check the payment_status is Completed
// check that txn_id has not been previously processed
// check that receiver_email is your Primary PayPal email
// check that payment_amount/payment_currency are correct
// process payment
if(stristr(urldecode($_POST['item_name']),"#") && ($_POST['payment_status'] == 'Completed' || $_POST['payment_status'] == 'Pending')){
//echo $req.'<hr>'.urldecode($Kcart_order_id);
$idTransakcji = explode("#",urldecode($_POST['item_name']));
$orderId = explode("#",$_REQUEST['item_name']);
// check if payment's amount is correct.
if(checkPayment($orderId[1],$_REQUEST['mc_gross'],$_POST['mc_currency'])){
// if result is TRUE, apply payment and finish.
// applyPayment function will do everything to finish this order
// it will send e-mails to admin/customer, if items were downloadable
// links will be attached to mail and will be shown in customer's status area
// also, order will be signed as "paid" in database.
// applyPayment('paid',Order ID,Order Amount,Currency - may be null,Transaction Id - from payment gate,IPN ID to assign how order was paid)
applyPayment('paid',$orderId[1],$_REQUEST['mc_gross'],$_POST['mc_currency'],$_REQUEST['txn_id'],1);
//echo "OK"; // only this message is valid for DotPay.
}
} // endof if stristr #
}
else if (strcmp ($res, "INVALID") == 0) {
// log for manual investigation
// mail_($adminEmail,"FAILED!","1");
}
}
fclose ($fp);
}
感谢您为我澄清这一点。我已尽力通过搜索获得正确答案,但这只会让我更加困惑。
最佳答案
这是在link you provided :
For increased security going forward, only HTTPS will be allowed forpostbacks to PayPal.
At this time, there is no requirement for HTTPSon the outbound IPN call from PayPal to the merchant’s IPN listener.
注意:我将句子分开以显示不同的上下文...
“第一”句表示您Paypal 的任何/所有调用必须使用HTTPS (TLS 1.2) - 尽管 TSL 1.2
要求似乎已从最初的 2016 年 6 月移至 2017 年 6 月。
所以当您POST
(返回) 到 Paypal 在验证步骤,you'll need to connect (POST) to Paypal using HTTPS .
“第二句”表示您的 notify_url
仍然可以是 HTTP。您从 Paypal 接收数据的 url/s 仍然可以是 HTTP。
嗯...
关于php - 我现在需要在我的域上使用 HTTPS 才能使用 PayPal 标准付款吗?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37482257/
我在 JavaScript 文件中运行 PHP,例如...... var = '';). 我需要使用 JavaScript 来扫描字符串中的 PHP 定界符(打开和关闭 PHP 的 )。 我已经知道使
我希望能够做这样的事情: php --determine-oldest-supported-php-version test.php 并得到这个输出: 7.2 也就是说,php 二进制检查 test.
我正在开发一个目前不使用任何框架的大型 php 站点。我的大问题是,随着时间的推移慢慢尝试将框架融入应用程序是否可取,例如在创建的新部件和更新的旧部件中? 比如所有的页面都是直接通过url服务的,有几
下面是我的源代码,我想在同一页面顶部的另一个 php 脚本中使用位于底部 php 脚本的变量 $r1。我需要一个简单的解决方案来解决这个问题。我想在代码中存在的更新查询中使用该变量。 $name)
我正在制作一个网站,根据不同的情况进行大量 PHP 重定向。就像这样...... header("Location: somesite.com/redirectedpage.php"); 为了安全起见
我有一个旧网站,我的 php 标签从 因为短标签已经显示出安全问题,并且在未来的版本中将不被支持。 关于php - 如何避免在 php 文件中写入
我有一个用 PHP 编写的配置文件,如下所示, 所以我想用PHP开发一个接口(interface),它可以编辑文件值,如$WEBPATH , $ACCOUNTPATH和 const值(value)观
我试图制作一个登录页面来学习基本的PHP,首先我希望我的独立PHP文件存储HTML文件的输入(带有表单),但是当我按下按钮时(触发POST到PHP脚本) )我一直收到令人不愉快的错误。 我已经搜索了S
我正在寻找一种让 PHP 以一种形式打印任意数组的方法,我可以将该数组作为赋值包含在我的(测试)代码中。 print_r 产生例如: Array ( [0] => qsr-part:1285 [1]
这个问题已经有答案了: 已关闭11 年前。 Possible Duplicate: What is the max key size for an array in PHP? 正如标题所说,我想知道
我正在寻找一种让 PHP 以一种形式打印任意数组的方法,我可以将该数组作为赋值包含在我的(测试)代码中。 print_r 产生例如: Array ( [0] => qsr-part:1285 [1]
关闭。这个问题需要多问focused 。目前不接受答案。 想要改进此问题吗?更新问题,使其仅关注一个问题 editing this post . 已关闭 9 年前。 Improve this ques
我在 MySQL 数据库中有一个表,其中存储餐厅在每个工作日和时段提供的菜单。 表结构如下: i_type i_name i_cost i_day i_start i_
我有两页。 test1.php 和 test2.php。 我想做的就是在 test1.php 上点击提交,并将 test2.php 显示在 div 中。这实际上工作正常,但我需要向 test2.php
我得到了这个代码。我想通过textarea更新mysql。我在textarea中回显我的MySQL,但我不知道如何更新它,我应该把所有东西都放进去吗,因为_GET模式没有给我任何东西,我也尝试_GET
首先,我是 php 的新手,所以我仍在努力学习。我在 Wordpress 上创建了一个表单,我想将值插入一个表(data_test 表,我已经管理了),然后从 data_test 表中获取所有列(id
我有以下函数可以清理用户或网址的输入: function SanitizeString($var) { $var=stripslashes($var); $va
我有一个 html 页面,它使用 php 文件查询数据库,然后让用户登录,否则拒绝访问。我遇到的问题是它只是重定向到 php 文件的 url,并且从不对发生的事情提供反馈。这是我第一次使用 html、
我有一个页面充满了指向 pdf 的链接,我想跟踪哪些链接被单击。我以为我可以做如下的事情,但遇到了问题: query($sql); if($result){
我正在使用 从外部文本文件加载 HTML/PHP 代码 $f = fopen($filename, "r"); while ($line = fgets($f, 4096)) { print $l
我是一名优秀的程序员,十分优秀!