setUrl('http://mockbin.com/har'); $request->setMethod(HTTP_METH_GET); $request->setHeaders(array( 'x-foo' => 'Bar', 'accept' => 'application/json' )); try { $response = $request->send(); echo $response->getBody(); } catch (HttpException $ex) { echo $ex; }