Paypal Checkout。我无法使用paypal帐户访问登录

时间:2017-02-20 11:55:43

标签: javascript paypal paypal-sandbox

我正在尝试使用Paypal Checkout实施付款流程

这是我的代码

<div class='wrapper-packages'>
   <div id="paypal-button"></div> 
</div>  

<script>
    paypal.Button.render({

       env: 'sandbox',

       client: {
           sandbox: 'xxxxxxxx',
           production: 'xxxxxxxx'
    },

    payment: function() {

        var env    = this.props.env;
        var client = this.props.client;

        return paypal.rest.payment.create(env, client, {
            transactions: [
                {
                    amount: { total: '1.00', currency: 'USD' }
                }
            ]
        });
    },

    commit: true, // Optional: show a 'Pay Now' button in the checkout flow

    onAuthorize: function(data, actions) {

        // Optional: display a confirmation page here

        return actions.payment.execute().then(function() {
            alert('ok');
        });
    }
}, '#paypal-button')
</script>

当我点击Paypal Checkout按钮时,它会打开登录paypal帐户的模式,但我无法登录

登录凭据没问题,我已经检查过了。 那么,问题可能是什么呢?

1 个答案:

答案 0 :(得分:1)

使用PayPal沙盒时,您需要使用沙盒测试帐户。您可以在Docs

中详细了解它们