2017-11-01 3 views
-1

Ich bin PHP-Bibliothek verwenden, um Dateien abzurufen oder sie zu Google hochladen fahrenssl Fehler Google-Laufwerk api

include_once ROOT.'/google-api-php-client/vendor/autoload.php'; 

$client = new Google_Client(); 

$credentialsFile = ROOT.'/google-api-php-client/service_account.json'; 
if (!file_exists($credentialsFile)) { 
    throw new RuntimeException('Service account credentials Not Found!'); 
} 

$client->setAuthConfig($credentialsFile); 
$client->setScopes(Google_Service_Drive::DRIVE); 

$service = new Google_Service_Drive($client); 

/** 
    * Проверка существования папки для документов 
    */ 

$optParams = array(
    'q' => "name='Документы'" 
); 
$results = $service->files->listFiles($optParams); 
if (count($results->getFiles()) == 0) { 
exit('Нет папки для документов'); 
} else { 
    foreach ($results->getFiles() as $file) { 
$papka_doc = $file->getId(); 
    } 
} 

alles funktioniert hat, aber vor ein paar Tagen gab es einen Fehler:

 
Uncaught exception 'GuzzleHttp\\Exception\\RequestException' with message 'cURL error 60: SSL certificate problem: unable to get local issuer certificate (see http://curl.haxx.se/libcurl/c/libcurl-errors.html) 

Was könnte das Problem sein?

Antwort

0

Try this,

Zunächst sollten Sie curl.cert Datei herunterladen,

curl https://curl.haxx.se/ca/cacert.pem -o /etc/pki/tls/certs/ca-bundle.crt 

Zweitens dieses Zertifikat festgelegt.

$client->getHttpClient()->setDefaultOption('verify', '[Certificate File Path]'); 

Centos Standardpfad;

/etc/pki/tls/certs/ca-bundle.crt 
+0

Leider hat diese Methode nicht geholfen –