Я использую PHP 5.4, который поставляется с XAMPP 1.8.2-6, и пытаюсь реализовать функцию get trainmodels с помощью следующего кода.
require_once 'google-api-client/vendor/autoload.php';
$client = new Google_Client();
$client->setApplicationName('Testing Application');
$client->addScope(Google_Service_Prediction::PREDICTION);
$client->setAuthConfig('auth.json');
$predictionService = new Google_Service_Prediction($client);
$projectId = 'some-project-id';
$predictionService->trainedmodels->listTrainedmodels($projectId);
Сервер запускается с использованием PHP Internal Development Server.
Однако когда listTrainedmodels
выполняется, браузер возвращает «ERR_CONNECTION_RESET».
Пытался добавить cacret.pem в php.ini и включил openssl, но все равно не повезло.
Задача ещё не решена.
Других решений пока нет …