Google API愿景 - 无法加载默认凭据

时间:2017-05-03 12:16:50

标签: php google-app-engine google-vision

我正在尝试使用Google Vision API。 我做了以下步骤:

  1. 启用了Google Vision API
  2. 创建了服务帐户ID
  3. 使用json路径设置enviorement varialbe'GDOGO_APPLICATION_CREDENTIALS'
  4. 使用composer
  5. 下载了API
  6. 编写了以下代码:

    $vision = new VisionClient([
      'projectId' => $googleApiKey,
    ]);
    

    $ image = $ vision-> image(file_get_contents($ path),['FACE_DETECTION']); $ result = $ vision-> annotate($ image);

  7. 当我午餐时,我得到以下错误:

     Fatal error: Uncaught exception 'Google\Cloud\Core\Exception\ServiceException' with message 'Could not load the default credentials. 
    

    有人可以帮我解决这个问题吗?

    非常感谢!!!

1 个答案:

答案 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...

使用快速入门示例进行诊断后,您应该弄清楚代码中发生了什么。