使用s3存储桶上传文件时出现以下问题。
(1/1) InvalidArgumentException
Missing required client configuration options:
My S3 Array in config/filesystems.php file
's3' => [
'driver' => 's3',
'key' => env("S3_KEY",'mykey'),
'secret' => env("S3_SECRET",'my_secret'),
'region' => env("S3_REGION",'my_region'),
'bucket' => env("S3_BUCKET",'my_bucket')
],
我认为问题出在Above s3数组中。请让我纠正。