Is it possible to store a JSON file to an ENV variable with dotenv?

后端 未结 2 1067
栀梦
栀梦 2021-02-14 23:12

I am using Google Drive API with my Rails application. The API is working fine. I have the following client_secret.json file:

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


        
2条回答
  •  栀梦
    栀梦 (楼主)
    2021-02-14 23:42

    Yes. It is possible to store json file in variable. However there is one small change needed :

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

    Do this for every double quote inside the curly braces of json.

提交回复
热议问题