Guest User

Untitled

a guest
Nov 19th, 2017
87
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.62 KB | None | 0 0
  1. GuzzleHttpExceptionConnectException: cURL error 7: (see http://curl.haxx.se/libcurl/c/libcurl-errors.html) in /(...)/vendor/guzzlehttp/guzzle/src/Handler/CurlFactory.php:186
  2.  
  3. CURLE_COULDNT_CONNECT (7)
  4.  
  5. Failed to connect() to host or proxy.
  6.  
  7. composer require google/apiclient
  8.  
  9. $client = new Google_Client();
  10. $client->setDeveloperKey($this->config->item('google_key'));
  11. $youtube = new Google_Service_YouTube($client);
  12. // The next line throws the exception:
  13. $response = $youtube->playlistItems->listPlaylistItems('snippet', ['playlistId' => $this->config->item('youtube_playlist_id'), 'maxResults' => 20]);
  14. // More code
Add Comment
Please, Sign In to add comment