Requires the PHP curl module to be enabled. See for full requirements the PHP manual: http://php.net/curl
Example #1
0
 /**
  * @param array $handlers array of handlers
  * @param string $path   Resource path relative to base service endpoint
  * @param string $method HTTP method - one of GET, POST, PUT, DELETE, PATCH etc
  * @param string $data   Request payload
  * @param array $headers HTTP headers
  */
 public function execute($handlers, $path, $method, $data = '', $headers = array())
 {
     $config = $this->apiContext->getConfig();
     $httpConfig = new PPHttpConfig(null, $method);
     $httpConfig->setHeaders($headers + array('Content-Type' => 'application/json'));
     foreach ($handlers as $handler) {
         $handler = new $handler($this->apiContext);
         $handler->handle($httpConfig, $data, array('path' => $path));
     }
     $connection = new PPHttpConnection($httpConfig, $config);
     $response = $connection->execute($data);
     $this->logger->fine($response);
     return $response;
 }