Пример #1
0
 /**
  * @param string $endpoint
  * @param array $parameters
  * @param string $path
  * @throws ApiException
  * @return array
  */
 protected function get($endpoint, $parameters = [], $path = null)
 {
     try {
         $response = $this->client->get($this->makeUrl($endpoint, $path), $this->defaultHeaders, ["query" => $parameters])->send();
         $responseArray = json_decode($response->getBody(true), true);
         return $responseArray[$endpoint];
     } catch (BadResponseException $e) {
         throw ApiException::fromBadResponseException($e);
     }
 }
Пример #2
0
 /**
  * @param $endpoint
  * @param $rawbody
  * @param $httpMethod
  * @return mixed
  * @throws \Exception
  */
 public function rawRequest($endpoint, $rawbody, $httpMethod)
 {
     try {
         if (strtolower($httpMethod) == 'get') {
             $response = $this->client->get($this->makeUrl($endpoint), $this->defaultHeaders, ["query" => []])->setAuth($this->username, $this->password)->send();
         } elseif (strtolower($httpMethod) == 'post') {
             $response = $this->client->post($this->makeUrl($endpoint), $this->defaultHeaders + ["Content-Type" => "application/vnd.api+json"], $rawbody)->setAuth($this->username, $this->password)->send();
         } else {
             throw new \Exception('At the moment this function only supports get and post');
         }
         return $response->getBody(true);
     } catch (BadResponseException $e) {
         throw ApiException::fromBadResponseException($e);
     }
 }