By editor, 18 May, 2016 Question How to read data from a url like rupal_http_request() on drupal 7 or like file_get_contents($url) ? Example : use GuzzleHttp\Exception\RequestException; $url = "http://www.domail.com"; $client = \Drupal::httpClient(); try { $response = $client->get($url); $data = $response->getBody(); $code = $response->getStatusCode(); $header = $response->getHeaders(); } catch (RequestException $e) { watchdog_exception('my_module', $e); } https://www.drupal.org/node/1862446 Tags Drupal 8 Code Comments You must have JavaScript enabled to use this form. Your name Subject Comment About text formats Plain text No HTML tags allowed. Lines and paragraphs break automatically. Web page addresses and email addresses turn into links automatically.
Comments