You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I use this configuration to access my Google Cloud Storage project from components.
'fs' => [
'class' => 'dosamigos\flysystem\GoogleCloudFsComponent',
'projectId' => $params['gcsProjectId'],
'bucket' => $params['gcsBucket'],
// 'prefix' => 'your-prefix',
],
What steps will reproduce the problem?
I use this configuration to access my Google Cloud Storage project from components.
'fs' => [
'class' => 'dosamigos\flysystem\GoogleCloudFsComponent',
'projectId' => $params['gcsProjectId'],
'bucket' => $params['gcsBucket'],
// 'prefix' => 'your-prefix',
],
What is the expected result?
I can access the GCS
What do you get instead?
{ error: { code: 401, message: Invalid Credentials, errors: [ { message: Invalid Credentials, domain: global, reason: authError, locationType: header, location: Authorization } ] } }
I though this error was occurred on authorization process or Maybe something were wrong when authorization process occurred.