我正在尝试使用Google Vision API。 我做了以下步骤:
编写了以下代码:
$vision = new VisionClient([
'projectId' => $googleApiKey,
]);
$ image = $ vision-> image(file_get_contents($ path),['FACE_DETECTION']); $ result = $ vision-> annotate($ image);
当我午餐时,我得到以下错误:
Fatal error: Uncaught exception 'Google\Cloud\Core\Exception\ServiceException' with message 'Could not load the default credentials.
有人可以帮我解决这个问题吗?
非常感谢!!!
答案 0 :(得分:-1)
如果在指定时使用绝对路径,那将是最好的。例如。 /credentials/creds.json
优于./creds.json
。尝试绝对设置路径。
您可能想尝试从已知良好的配置开始。以下内容可能会有所帮助:
git clone https://github.com/googlecloudplatform/php-docs-samples
cd php-docs-samples/quickstart
php -r "copy('https://getcomposer.org/installer', 'composer-setup.php');"
php -r "if (hash_file('SHA384', 'composer-setup.php') === '669656bab3166a7aff8a7506b8cb2d1c292f042046c5a994c43155c0be6190fa0355160742ab2e1c88d40d5be660b410') { echo 'Installer verified'; } else { echo 'Installer corrupt'; unlink('composer-setup.php'); } echo PHP_EOL;"
php composer-setup.php
php -r "unlink('composer-setup.php');"
php composer.phar install
php quickstart.php
```
如果快速入门为您提供有关时区的问题,请在require语句后添加以下quickstart.php
:
date_default_timezone_set('America/Los_Angeles');
如果您的路径不正确,您应该会看到错误:
Uncaught exception 'DomainException' with message 'Unable to read the credential file specified by...
使用快速入门示例进行诊断后,您应该弄清楚代码中发生了什么。