我尝试将PayPal按钮集成到我的网站中,使用此处找到的方法:
How-To: Build your own PayPal Encrypted Buttons
我按照了所有说明操作,但当我点击页面上的按钮时,会转到显示We were unable to decrypt the certificate id.
我做错了什么?
答案 0 :(得分:1)
首先 - 你必须去看看:
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类。
请务必阅读第一个网站上的所有评论。它们很重要!
我希望这会有所帮助。 : - )
答案 1 :(得分:0)
如果您尝试解决此错误““ 我们无法解密... ”,则可以通过这种方式解决 我认为您无法正确配置沙箱 点击here创建添加到购物车按钮,然后 创建按钮后,然后向您显示一些脚本副本粘贴在您的项目中
例如
<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>