我试图像here那样进行Paypal结帐。这适用于Chrome,但在Firefox中我遇到了这个问题:
表格
<html><body>
Paypal redirect...<br />
<form name="frm" action="https://sandbox.paypal.com/cgi-bin/webscr" method="post">
<input type="hidden" name="cmd" value="_xclick" />
<input type="hidden" name="business" value="bbbb@bbb.com" />
<input type="hidden" name="return" value="http://bbb.com/yeah.php" />
<input type="hidden" name="undefined_quantity" value="1" />
<input type="hidden" name="item_name" value="Order #<?= $_SESSION['order_id'] ?>" />
<input type="hidden" name="item_number" value="order_<?= $_SESSION['order_id'] ?>" />
<input type="hidden" name="amount" value="<?= $_SESSION['kasse_price'] ?>" />
<input type="hidden" name="shipping" value="0.00" />
<input type="hidden" name="no_shipping" value="1" />
<input type="hidden" name="cn" value="Comments" />
<input type="hidden" name="currency_code" value="EUR" />
<input type="hidden" name="lc" value="DE" />
<input type="hidden" name="bn" value="PP-BuyNowBF" />
<input type="image" src="https://www.paypal.com/de_DE/i/btn/btn_paynow_SM.gif" border="0" name="submit" alt="Mit PayPal bezahlen." />
<img alt="" border="0" src="https://www.paypal.com/de_DE/i/scr/pixel.gif" width="1" height="1" />
</form>
<script language="JavaScript">
document.frm.submit();
</script></body></html>
我检查了POST参数发送到Paypal。两种浏览器看起来都很好。请注意,我自动发送表单。我知道这不好,但我不知道一个更好的方法,我试图让这项工作。
知道为什么Firefox失败了吗?
答案 0 :(得分:2)
这不是关于Firefox或Chrome,您需要使用您的开发者帐户登录。您应该拥有一个开发人员帐户(此处设置为https://developer.paypal.com/),您之前至少要定义买家和卖家帐户。
要使用沙盒帐户,您需要登录。您将拥有该帐户的“伪登录”,但您已经使用您的开发帐户登录了上下文。