您用于进入PayPal系统的链接无效.请查看链接,然后重试



我正在尝试通过沙箱测试贝宝表单,并创建了一个预配置的测试帐户。

然而,当我浏览我的贝宝表格并输入密码时,我会出现以下错误:

"您用于进入PayPal系统的链接无效。请查看该链接并重试。"

我不确定这个错误是什么意思。我删除了我的电子邮件地址,我知道它显示为xxxxxxxx@gmail.com在下面的例子中。

我的表格如下:

<form name "_xclick" action="https://www.sandbox.paypal.com/cgi-bin/webscr" method="post">
SteamID: <input type="text" name="item_number" value="<?php echo $steamid;?>" size="45">
<br> <?php echo $possible;?>
<input type="hidden" name="item_name" value="Seriouspants Donation <?php echo $steamid;?>">
<input type="hidden" name="cmd" value="_xclick-subscriptions">
<input type="hidden" name="no_note" value="1">
<input type="hidden" name="business" value="xxxxxxxx@gmail.com">
<input type="hidden" name="currency_code" value="USD">
<input type="hidden" name="no_shipping" value="1">
<input type="hidden" name="return" value="http://seriouspants.net/customs/paypal/complete.php">
<input type="hidden" name="a3" value="5.00">
<input type="hidden" name="p3" value="1">
<input type="hidden" name="t3" value="M">
<input type="hidden" name="src" value="1">
<input type="hidden" name="sra" value="1">
<br /><br />
<input type="submit" name="Submit" value="Submit">
</form>

接收付款的付款电子邮件可能在个人帐户上。将其升级为业务帐户。这对我很有效。

我的问题是我没有检查我的商业账户。要获得与测试帐户代码一起发送的电子邮件,您需要访问通知(https://developer.paypal.com/developer/notifications/)

您需要在https://developer.paypal.com(不是在沙盒中。paypal.com)在那里你可以用假余额创建多个测试帐户。

最新更新