我在 Rails 应用程序中使用 Google Drive API。API 工作正常。我有以下 client_secret.json 文件:
{
"type": "service_account",
"project_id": "gobirdie-landing-page",
"private_key_id": "xxxxx",
"private_key": "-----BEGIN PRIVATE KEY----- xxxxx -----END PRIVATE KEY-----\n",
"client_email": "xxxxxxx@gobirdie-landing-page.iam.gserviceaccount.com",
"client_id": "xxxxxxxxx",
"auth_uri": "xxxxxx",
"token_uri": "xxxxxxx": "xxxxxxxx": "xxxxxxxxx"
}
在我的控制器中调用
@session = GoogleDrive::Session.from_service_account_key("client_secret.json")
有了这个配置没问题,我设法使用了 API。但是,我想将我的 JSON 存储在 .env 文件中,例如:
CLIENT_SECRET = "{
"type": "service_account",
"project_id": "gobirdie-landing-page",
"private_key_id": "xxxxx",
"private_key": "-----BEGIN PRIVATE KEY----- xxxxx -----END PRIVATE KEY-----\n",
"client_email": "xxxxxxx@gobirdie-landing-page.iam.gserviceaccount.com",
"client_id": "xxxxxxxxx",
"auth_uri": "xxxxxx",
"token_uri": "xxxxxxx": "xxxxxxxx": "xxxxxxxxx"
}"
并以这种方式在控制器中调用
@session = GoogleDrive::Session.from_service_account_key(ENV['CLIENT_SECRET'])
或者以这种方式
@session = GoogleDrive::Session.from_service_account_key(JSON.parse(ENV['CLIENT_SECRET']))
但是这两种方法都不起作用。所以我的问题是:“是否可以将 JSON 文件存储在 ENV 变量中?”