Curl Получить ответ на запрос не верно - PullRequest
0 голосов
/ 25 октября 2019

Curl Получить ответ на запрос в параметрах URL. Ниже приведен код.

    $url = "?data=$data&product_key=$this->product_key";
        return $this->Connect('GET', 'creditcomplete' . $url);


    public function Connect($requestMethod, $entity, $body = null) {

            $curl = curl_init(BASE_API_URL . 'v1/' . $entity);
            $options = array(
                'Apikey: ' . api_key . '',
                'Token: ' . token . '',
                'Secret: ' . secret . '',
                'Content-Type: application/json',
                'Accept: application/json'
            );

            curl_setopt($curl, CURLOPT_ENCODING, "");
            curl_setopt($curl, CURLOPT_RETURNTRANSFER, true); 
            curl_setopt($curl, CURLOPT_HTTPHEADER, $options);
            curl_setopt($curl, CURLOPT_CUSTOMREQUEST, $requestMethod);
            curl_setopt($curl, CURLOPT_SSL_VERIFYPEER, FALSE);
            curl_setopt($curl, CURLOPT_SSL_VERIFYHOST, FALSE);

            if ($requestMethod == 'POST' || $requestMethod == 'PUT') {
                curl_setopt($curl, CURLOPT_POSTFIELDS, $body);
            }

            $curlResponse = curl_exec($curl);

            if($this->isJSON($curlResponse)) {
                $curlResponse = json_decode($curlResponse, 1);
            }       

            curl_close($curl);

            return $curlResponse;
    }

    private function isJSON($string) {
        return is_string($string) && is_object(json_decode($string)) ? true : false;
    }

Ответ:

creditcomplete{"Response": {"Reminders": [],"Repayments": [],"Payouts": [],"Transactions": []}}

Я не знаю, почему creditcomplete добавляется с ответом. Любая помощь будет оценена. PHP версия 7.1.23.

1 Ответ

0 голосов
/ 25 октября 2019

Проверьте переменную $ options. Являются ли api_key, token, секретными константами?

...