仅使用 Golang 中的环境变量初始化 Firebase Admin SDK

我正在尝试仅使用环境变量(无法访问文件系统)来初始化 Firebase Admin SDK 。

我有该service-account-file.json文件,并且可以通过以下方式使其在本地工作:

export GOOGLE_APPLICATION_CREDENTIALS="/path/to/service-account-file.json"
...

myfile.go:
app, err := firebase.NewApp(context.Background(), nil)

但是,我想将 的内容service-account-file.json放入环境变量中,并使用其值初始化 firebase Admin SDK。

有一个未解决的问题声称您可以通过CredentialsFromJSON来完成此操作,但我不太明白。

有人有这个工作吗?如果可以,您能举个例子吗?


慕码人8056858
浏览 190回答 2
2回答

一只萌萌小番薯

尝试:export JSON_CREDS="{\"type\":\"service_account\",\"project_id\":\"project-id\",\"private_key_id\":\"some_number\",\"private_key\":\"\",\"client_email\":\"<api-name>api@project-id.iam.gserviceaccount.com\",\"client_id\":\"...\",\"auth_uri\":\"https:\/\/accounts.google.com\/o\/oauth2\/auth\",\"token_uri\":\"https:\/\/accounts.google.com\/o\/oauth2\/token\",\"auth_provider_x509_cert_url\":\"https:\/\/www.googleapis.com\/oauth2\/v1\/certs\",\"client_x509_cert_url\":\"https:\/\/www.googleapis.com\/...<api-name>api%40project-id.iam.gserviceaccount.com\"}"...import "google.golang.org/api/option"...app, err := firebase.NewApp(context.Background(), nil, option.WithCredentialsJSON([]byte(os.Getenv("JSON_CREDS"))))

饮歌长啸

我仅使用转义特殊字符的文件内容时遇到问题。对我来说,解决了获取整个有效负载并编码为 Base64,然后我设置为环境变量并在客户端启动中使用。sdk, _ := b64.StdEncoding.DecodeString(os.Getenv("FIREBASE_SDK"))opt := option.WithCredentialsJSON(sdk)app, err := firebase.NewApp(context.Background(), nil, opt)这种方式对我有用
打开App,查看更多内容
随时随地看视频慕课网APP

相关分类

Go