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

时间:2019-06-14 22:42:53

标签: firebase go firebase-admin

我正在尝试initialize the 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。

有一个open issue声称您可以通过CredentialsFromJSON进行操作,但是我不太清楚。

有人在工作吗?如果可以,请提供示例吗?

1 个答案:

答案 0 :(得分:1)

尝试:

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"))))