PAYPAL 付款客户端 REST 脚本

问题描述 投票:0回答:2

我已将 PayPal 客户端 REST 集成到我的网站。我使用了以下链接提供的示例代码: https://developer.paypal.com/demo/checkout/#/pattern/client

下面的代码运行了一个多月,但是今天显示以下错误 错误:请求发布 https://www.sandbox.paypal.com/v1/ payments/ payment

failed with 400 error

{
    "name": "MALFORMED_REQUEST",
    "message": "Incoming JSON request does not map to API request",
    "information_link": "https://developer.paypal.com/webapps/developer/docs/api/#MALFORMED_REQUEST",
    "debug_id": "a26904ff6211a"
}

我的代码如下:

 <div id="paypal-button-container" class="info"></div><script src="https://www.paypalobjects.com/api/checkout.js"></script>
<script>

    // Render the PayPal button

    paypal.Button.render({

        // Set your environment

        env: 'production', // sandbox | production

        // PayPal Client IDs - replace with your own
        // Create a PayPal app: https://developer.paypal.com/developer/applications/create

        client: {
            sandbox:    '<?=SANDBOXPAYPAL?>',
            production: '<?=PAYPAL_TOKEN?>'
        },

        // Set to 'Pay Now'

        commit: true,

        // Wait for the PayPal button to be clicked

        payment: function() {
$('#card').attr('checked',true);
            // Make a client-side call to the REST api to create the payment


            return paypal.rest.payment.create(this.props.env, this.props.client, {
                transactions: [
                    {
                        amount: { total: '12.99', currency: 'GBP' }
                    }
                ]
            });
        },

        // Wait for the payment to be authorized by the customer

        onAuthorize: function(data, actions) {

           jQuery.ajax({
           type: "POST",
           url: "ipn.php",
           data: data,
           success: function(data){ 
           }
         });

            return actions.payment.execute().then(function() {
                document.querySelector('#paypal-button-container').innerText = 'Payment Complete!';
            });
        }

    }, '#paypal-button-container');

</script>
php jquery paypal paypal-rest-sdk
2个回答
1
投票

您的代码与示例不太匹配,但我也在使用我正在构建的 Laravel 购物车中的 client-sdie API,我使用 AJAX 以这种方式将支付数据推送回我的系统:

onAuthorize:function(data, actions)
    {
        console.log("onAuthorize()");
        console.log("Dumping DATA");
        console.log(data);
        console.log("Dumping ACTIONS");
        console.log(actions);
        return actions.payment.execute().then(function(payment)
        {
            console.log("payment.execute called");
            document.querySelector('#paypal-button-container').innerText = 'Payment Complete!';
            console.log("Dumping payment:");
            console.log("CART: "+payment['cart']);
            console.log(payment);

            var values = encodeURIComponent(JSON.stringify(payment));
            $.ajaxSetup({headers:{'X-CSRF-TOKEN':'{{ $token }}' } } );
            ajaxRequest= $.ajax({ url: "/ajax/payment", type: "post",data:values });
            ajaxRequest.done(function(response, textStatus, jqXHR)
            {
                var result = $.parseJSON(response);
                console.log(result);
            });

        });
    },

/ajax/ payment 是我目前正在开发的捕获脚本,但它确实记录了购买的所有数据..希望它有帮助。


-2
投票

您是否迫切需要黑客来改变您的财务状况、间谍电子邮件、黑客银行账户(包括世界银行)、银行转账、PayPal 转账、速汇金和西联汇款)联系方式:  [电子邮件受保护] 给我发短信 WhatsApp: +1 (469)793-1555

© www.soinside.com 2019 - 2024. All rights reserved.