我想集成PayPal上下文结帐体验,但遇到错误,似乎与我的凭据有关。我仔细检查了所有内容,但仍然无法解决问题。
在我的索引.html文件中:
<form id="myContainer" action='/checkout' METHOD='POST'></form>
<script>
window.paypalCheckoutReady = function () {
console.log('paypalCheckoutReady');
paypal.checkout.setup('K9FXC5VWR963Q', {
environment: 'sandbox',
container: 'myContainer'
});
};
</script>
<script src="https://www.paypalobjects.com/api/checkout.js" async></script>
然后在我的服务器.js文件中,我有我的所有配置,如下所示:
var paypal = require('paypal-express-checkout').init('username', 'password', 'signature', 'return url', 'cancel url', [debug]);
当我谷歌问题时,最常见的解决方案是确保我的用户名,密码和签名正确。我已经完成了此操作,但仍然无法连接到API。我的终端给我这个错误:
{ TIMESTAMP: '2016-03-12T20:30:06Z',
CORRELATIONID: 'e1fda77960187',
ACK: 'Failure',
VERSION: '52.0',
BUILD: '18316154',
L_ERRORCODE0: '10002',
L_SHORTMESSAGE0: 'Security error',
L_LONGMESSAGE0: 'Security header is not valid',
L_SEVERITYCODE0: 'Error' }
是的。 10002 错误表示 API 凭据不正确。
如果要测试沙盒 API,请在通过沙盒帐户登录后从 https://www.sandbox.paypal.com/us/cgi-bin/webscr?cmd=_login-api-run 获取 API 凭据。
如果要调用实时 API,请在登录后从 https://www.paypal.com/us/cgi-bin/webscr?cmd=_login-api-run 获取 API 凭据。
请确保您没有在代码中混合沙盒和实时环境。谢谢!