Google Cloud Storage authentication throws errors

2019-08-25 10:26发布

I'm trying to write a script that will allow me uploading files to Google Storage. Here's what I've got so far:

define("PROJECT_ID", "my-project");
define("BUCKET_NAME", "my-bucket");

require '../../vendor/autoload.php';

use Google\Cloud\Storage\StorageClient;

// Authenticating with a keyfile path.
$storage = new StorageClient([
    'keyFilePath' => '../../my-keyfile.json'
]);

// Providing the Google Cloud project ID.
$storage = new StorageClient([
    'projectId' => PROJECT_ID
]);

$bucket = $storage->bucket(BUCKET_NAME);

$uploadFile = '../fileTest.txt';

$bucket->upload(
    fopen($uploadFile, 'r')
);

I keep getting the following error:

Fatal error: Uncaught Google\Cloud\Core\Exception\ServiceException: { "error": { "errors": [ { "domain": "global", "reason": "authError", "message": "Invalid Credentials", "locationType": "header", "location": "Authorization" } ], "code": 401, "message": "Invalid Credentials" } } in /home/domain/vendor/google/cloud/Core/src/RequestWrapper.php:362 Stack trace: #0 /home/domain/vendor/google/cloud/Core/src/RequestWrapper.php(206): Google\Cloud\Core\RequestWrapper->convertToGoogleException(Object(GuzzleHttp\Exception\ClientException)) #1 /home/domain/vendor/google/cloud/Core/src/Upload/MultipartUploader.php(64): Google\Cloud\Core\RequestWrapper->send(Object(GuzzleHttp\Psr7\Request), Array) #2 /home/domain/vendor/google/cloud/Storage/src/Bucket.php(285): Google\Cloud\Core\Upload\MultipartUploader->upload() #3 /home/domain/public_html/dev/incl/test.php(39): Google\Cloud\Storage\Bucket->upload(Resource id #60) #4 /home/domain/public_html/dev/index.php(42): include_once('/hom in /home/domain/vendor/google/cloud/Core/src/RequestWrapper.php on line 362

I checked to make sure the folloring files exist, and they do:

  • my-keyfile.json
  • fileTest.txt

What am I missing?

1条回答
Fickle 薄情
2楼-- · 2019-08-25 11:01

Create the JSON credential from IAM->Service accounts and grant Storage Admin permissions.

Set GOOGLE_APPLICATION_CREDENTIALS by export GOOGLE_APPLICATION_CREDENTIALS="YOUR-my-keyfile.json"

Or update your code:

$storage = new StorageClient([
    'keyFilePath' => '../../my-keyfile.json'
]);

// Providing the Google Cloud project ID.
$storage = new StorageClient([
    'projectId' => PROJECT_ID
]);

to

$storage = new StorageClient([
    'keyFilePath' => '../../my-keyfile.json',
    'projectId' => PROJECT_ID
]);
查看更多
登录 后发表回答