PayPal Rest API for Payments在沙箱中返回NULL [英] PayPal Rest API for Payments returns NULL in the sandbox

查看:90
本文介绍了PayPal Rest API for Payments在沙箱中返回NULL的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我在PayPal有一个沙盒帐户.我可以使用PHP上的curl通过api检索令牌,但是处理测试卡只会返回null.有人看到代码有问题吗?这是PayPal沙箱的已知问题吗?以下代码段中的客户端是伪造的,但是,如前所述,使用我的真实凭据,我可以成功地调用以检索令牌.

I've a sandbox account with PayPal. I can retrieve the token via the api using curl on PHP, however processing a test card just returns null. Anyone see a problem with the code? Is this a known problem with the PayPal sandbox? The client in the below snippet are fabricated, however, as mentioned before, using my real credentials I can successfully make a call to retrieve the token.

用于生成请求的PHP:

The PHP to generate the request:

 <?php

    class psPayPal {

    private $tokenUrl = 'https://api.sandbox.paypal.com/v1/oauth2/token';
    private $paymentUrl = 'https://api.sandbox.paypal.com/v1/payments/payment';
    private $client = 'dlkjasdfkja;skdjfaksdjfkajsdkfjaejkjefkekjakdjfaksjdfadjf;ja';
    private $secret = 'klj;akjdfjeieiadfaldkjfelkajsdfkjaejeiejisadif;alkdsfj;kjjie';
    private $token;
    private $tokenHandle;
    private $paymentHandle;

    public function __construct()
    {
        $this->tokenHandle = curl_init($this->tokenUrl);
        $this->buildTokenRequest();
    }

    public function buildTokenRequest()
    {
        $header = array(
            'Accept: application/json',
            'Accept-Language: en_US'
        );

        $user = $this->client . ':' . $this->secret;

        $data = 'grant_type=client_credentials';

        curl_setopt($this->tokenHandle, CURLOPT_HTTPHEADER, $header);
        curl_setopt($this->tokenHandle, CURLOPT_USERPWD, $user);
        curl_setopt($this->tokenHandle, CURLOPT_POSTFIELDS, $data);
        curl_setopt($this->tokenHandle, CURLOPT_RETURNTRANSFER, true);

        $this->commitTokenRequest();
    }

    public function commitTokenRequest()
    {
        $response = json_decode(curl_exec($this->tokenHandle));

        $this->token = $response->access_token;

        curl_close($this->tokenHandle);
    }

    public function buildPaymentRequest($cost = '', $description = '')
    {
        $this->paymentHandle = curl_init($this->paymentUrl);

        $header = array(
            'Accept: application/json',
            'Accept-Language: en_US',
            'Authorization:Bearer ' . $this->token
        );

        $data = array(
            'intent' => 'sale',
            'payer' => array(
                'payment_method' => 'credit_card',
                'funding_instruments' => array(
                        array(
                            'credit_card' => array(
                                'number' => '5500005555555559',
                                'type' => 'mastercard',
                                'expire_year'=> '2018',
                                'cvv2'=> '111',
                                'first_name'=> 'Joe',
                                'last_name' => 'Shopper'
                            )
                        )
                )
            ),
            'transactions' => array(
                    array(
                        'amount' => array(
                            'total' => '39.54',
                            'currency' => 'USD'
                        ),
                        'description' => 'This is my descrription for hats'
                    )
            )
        );
        $d = json_encode($data);

        curl_setopt($this->paymentHandle, CURLOPT_HTTPHEADER, $header);
        curl_setopt($this->paymentHandle, CURLOPT_POSTFIELDS, $d);
        curl_setopt($this->paymentHandle, CURLOPT_RETURNTRANSFER, true);

        $this->commitPaymentRequest();
    }

    public function commitPaymentRequest()
    {
        $response = json_decode(curl_exec($this->paymentHandle));

        var_dump($response);

        curl_close($this->paymentHandle);
    }

}

?>

尽管我相信上面的代码是完整的,但我尝试了多种选择.我还验证了我使用JSON Lint发送的jSON. JSON如下:

I've tried with a variety of options, although I believe the code above to be complete. I've also validated the jSON I'm sending with JSON Lint. The JSON follows:

{
"intent": "sale",
"payer": {
    "payment_method": "credit_card",
    "funding_instruments": [
        {
            "credit_card": {
                "number": "5500005555555559",
                "type": "mastercard",
                "expire_year": "2018",
                "cvv2": "111",
                "first_name": "Joe",
                "last_name": "Shopper"
            }
        }
    ]
},
"transactions": [
    {
        "amount": {
            "total": "39.54",
            "currency": "USD"
        },
        "description": "This is my descrription for hats"
    }
]

}

任何建议,不胜感激!

Any suggestions greatly appreciated!

推荐答案

原来,解决方案是添加标头Content-Type:application/json.由于某种原因,php在令牌请求中猜测了正确的Content-type(大概是由于Accepts标头),但是当json-array传递时,将Content-type更改为application/xml.一切都好!

turns out the solutions was to add a header, Content-Type: application/json. For some reason, php guessed the correct Content-type in the token request (presumably because of the Accepts header) but when passed the json-array changed the content-type to application/xml. All good now!

这篇关于PayPal Rest API for Payments在沙箱中返回NULL的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆