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