21

我在 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 变量中?”

4

3 回答 3

14

将 JSON 对象转换为字符串并将其存储在 ENV 中

您可以使用JSON.dump将 JSON 对象转换为字符串

然后在你的控制器中JSON.parse(ENV['CLIENT_SECRET'])

或者

您可以创建一个google_session.rb内部initializers文件夹

$google_session = GoogleDrive::Session.from_service_account_key(
   # config goes here
)

在您的控制器中,您将可以访问$google_session全局变量

于 2019-05-24T02:22:51.453 回答
2

是的。可以将 json 文件存储在变量中。但是,需要做一个小改动:

\\\"type\\\": \\\"service_account\\\",

对 json 花括号内的每个双引号执行此操作。

于 2019-05-23T14:46:46.887 回答
0

我想出的解决方案是对 json 对象进行基本编码并存储它,然后根据使用它的请求对其进行解码。

于 2021-06-23T08:47:52.663 回答