PHP 5.4的Google PHP API客户端:ERR_CONNECTION_RESET

时间:2017-03-21 03:41:27

标签: php google-api-php-client php-5.4 google-prediction

我使用XAMPP 1.8.2-6附带的PHP 5.4并尝试使用以下代码实现get trainedmodels函数。

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,但仍然没有运气。

0 个答案:

没有答案