Paypal";我们无法解密证书ID';


Paypal "we were unable to decrypt the certificate ID'

我正在尝试将PayPal按钮集成到我的网站中,方法如下:
如何:建立自己的PayPal加密按钮

我遵循了所有的说明,但当我点击页面上的按钮时,它会转到一个显示We were unable to decrypt the certificate id. 的页面

我做错了什么?

首先,您必须查看:

http://blog.scrobbld.com/paypal/protecting-your-payments-with-ewp/

然后您将需要:

http://www.flatmtn.com/article/setting-openssl-create-certificates

设置完以上所有内容后,您需要转到PayPal并登录。点击"使用经典界面"按钮,因为它更容易使用。一旦您到达PayPal的主要位置,请确保最左边的选项卡已单击并处于活动状态。在选项卡下,您将看到"配置文件"链接。将鼠标悬停在它上面(或者您可能需要左键单击它)。你应该看到一个下拉菜单。底部写着"我的销售工具"。点击它。在右手边你应该看到"API访问"和一个链接。如果你需要的话,点击它来设置你的API设置。在"我的销售工具"网页的最底部是"加密支付设置"链接。点击它。如果你在底部没有看到证书,那么你需要制作一个。证书ID将在左侧。您需要将其放入对setCertificateID()函数的调用中。来自PayPalEWP类。

请务必阅读第一个网站上的所有评论。它们很重要!

我希望这能有所帮助。:-)

如果您试图解决此错误"quot我们无法解密";那么你可以用这种方法解决我认为你无法对你的沙箱进行正确的配置单击此处创建"添加到购物车"按钮,然后创建按钮后,然后在项目中显示一些脚本复制粘贴

例如

<form target="paypal" action="https://www.sandbox.paypal.com/cgi-bin/webscr" method="post" >
    <input type="hidden" name="cmd" value="_cart">
    <input type="hidden" name="business" value="Your email here all notification send on this email">
    <input type="hidden" name="lc" value="US">
    <input type="hidden" name="item_name" value="webTest">
    <input type="hidden" name="amount" value="12.00">
    <input type="hidden" name="currency_code" value="USD">
    <input type="hidden" name="button_subtype" value="products">
    <input type="hidden" name="no_note" value="0">
    <input type="hidden" name="tax_rate" value="2.000">
    <input type="hidden" name="shipping" value="3.00">
    <input type="hidden" name="add" value="1">
    <input type="hidden" name="bn" value="PP-ShopCartBF:btn_cart_LG.gif:NonHostedGuest">
    <input type="image" src="https://www.sandbox.paypal.com/en_US/i/btn/btn_cart_LG.gif" border="0" name="submit" alt="PayPal - The safer, easier way to pay online!">
    <img alt="" border="0" src="https://www.sandbox.paypal.com/en_US/i/scr/pixel.gif" width="1" height="1">
    </form>