尝试使用PayPal "Buy Now"按钮时出现"The recipient of this payment is Unregistered"错误



我正在尝试让我的沙盒中的"立即购买"按钮PayPal工作。但是,当我使用它进行购买时,它不会显示在我的业务交易概览中。在个人帐户中,它显示为"无人认领"和"此付款的收款人未注册"。这是我用于按钮 ASP.NET 代码:

<form action="https://www.sandbox.paypal.com/cgi-bin/webscr" method="post" target="_top">
        <input type="hidden" name="cmd" value="_xclick" />
        <input type="hidden" name="notify_url" value="censored" />
        <input type="hidden" name="item_name" value="Aktivt kontigent" />
        <input type="hidden" name="item_number" value="1" />
        <input type="hidden" name="amount" value="240" />
        <input type="hidden" name="tax_rate" value="25" />
        <input type="hidden" name="undefined_quantity" value="0" />
        <input type="hidden" name="currency_code" value="USD" />
        <input type="hidden" name="handling" value="5" />
        <input type="hidden" name="business" value="censored" />
        <asp:ImageButton ID="btnPayNow" runat="server" ImageUrl="~/images/btn_buynowCC_LG.gif" PostBackUrl="https://www.sandbox.paypal.com/cgi-bin/webscr"/>
</form>

我知道我使用的是正确的商家 ID,因为我的公司名称会显示在PayPal的结账页面上。IPN也在工作,我可以在我的服务器上看到它。但是,交易不会出现在卖家帐户中,并且个人帐户具有这种奇怪的状态。有谁知道如何解决这个问题?

提前谢谢你。

问题是我的电子邮件没有得到验证。在那之后它起作用了。

相关内容

最新更新