gpt4 book ai didi

Paypal沙盒支付问题

转载 作者:太空宇宙 更新时间:2023-11-03 15:45:02 26 4
gpt4 key购买 nike

我有以下用于 Paypal 交易的发布按钮:

    <form action="https://www.sandbox.paypal.com/cgi-bin/webscr" method="post">
<input type="hidden" name="cmd" value="_xclick">
<input type="hidden" name="business" value="my@email.com">
<input type="hidden" name="item_name" value="Item description">
<input type="hidden" name="item_number" value="1">
<input type="hidden" name="amount" value="00.30">
<input type="hidden" name="no_shipping" value="1">
<input type="hidden" name="no_note" value="1">
<input type="hidden" name="currency_code" value="USD">
<input type="hidden" name="lc" value="US">
<input type="hidden" name="bn" value="PP-BuyNowBF">
<input type="hidden" name="return" value="website.com/index.php" />
<input type="hidden" name="cancel_return" value="website.com/index.php" />
<input type="hidden" name="rm" value="2">
<input type="hidden" name="notify_url" value="website.com/ipn/ipn.php">
<input type="hidden" name="custom" value="user_id">
<input type="submit" value="upgrade" />
</form>

和 ipn.php 中的以下代码

<?php
include_once 'config.php';
// 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";
$header .= "Content-Type: application/x-www-form-urlencoded\r\n";
$header .= "Content-Length: " . strlen($req) . "\r\n\r\n";
//$fp = fsockopen ('ssl://www.paypal.com', 443, $errno, $errstr, 30);
$fp = fsockopen ('ssl://www.sandbox.paypal.com', 443, $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'];

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
mysql_query("UPDATE table SET column='1' WHERE column2='13'");
}
else if (strcmp ($res, "INVALID") == 0) {
// log for manual investigation
}
}
fclose ($fp);
}
?>

当我点击升级按钮并支付时,它没有显示返回网站按钮...但是有一个返回 my@email.com 按钮,它有 10 秒的延迟并让我返回到我的网站...虽然它会弹出关于加密数据的警告,但我不知道它是什么。

我在 ipn.php 中使用的查询也没有执行。我什至不知道它是否转到 ipn.php。

最佳答案

关于返回“my@email.com”,如果您指定的电子邮件未映射到 PayPal 沙盒中的帐户,则可能会发生这种情况。也许您在按钮中使用的是真实电子邮件而不是沙盒帐户电子邮件?

另一种可能是您在“my@email.com”的测试帐户不是企业帐户。如果您有企业帐户,它应该反射(reflect)您的企业名称。

至于没有收到 IPN,沙箱在按时交付 IPN 方面并不总是做得很好,如果有的话。我实际上建议您尝试使用 Express Checkout 而不是 Website Payments Standard 进行集成。 Express Checkout 最初有点令人困惑,但在您尝试理解它之后就很容易实现。这是我认为解释 Express Checkout 工作原理的最佳文档:

https://cms.paypal.com/us/cgi-bin/?cmd=_render-content&content_ID=developer/e_howto_api_ECSimpleIntegration

当您准备好深入实现时,您应该看看这里:

https://cms.paypal.com/us/cgi-bin/?cmd=_render-content&content_ID=developer/howto_api_reference

使用 Express Checkout 而不是依赖 IPN 的好处是,您可以在用户返回您的网站时了解付款状态,而不必坐等 IPN 出现.

借助 Express Checkout,您还可以使用自定义“品牌名称”覆盖您的公司名称,这样您就可以在具有不同“品牌”的不同网站上使用相同的 PayPal 收款账户。

祝你好运!

关于Paypal沙盒支付问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6778450/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com