我一直得到Missing required arguments: google_storage_access_key_id, google_storage_secret_access_key
。我知道我應該將我的憑證放在「/.fog」文件中,但我不太瞭解應該如何在Rails應用程序的上下文中工作。有人可以詳細說明如何配置此?我嘗試在初始化程序中傳遞設置(如建議here),但它們似乎在validate_options方法中不被識別。使用服務帳戶(電子郵件和密鑰)進行身份驗證 - 谷歌
配置/初始化/ fog.rb GoogleStorage = Fog::Storage.new( provider: 'Google', google_project: 'xxxxxxxxxxxxx', google_client_email: '[email protected]', google_key_location: 'private/google-cloud-service-key.p12' )
問題是我根本不想使用access_key。我不必在我的Node應用程序中; p12/pem + client_email就足夠了。 –